From 4c1fc52d2ae09036cda98bf7ad589595a5f6923f Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Wed, 5 Jun 2024 20:06:13 +0200 Subject: [PATCH] core/cgroup: drop spurious ", ignoring" for unit_cgroup_is_empty --- src/core/cgroup.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/cgroup.c b/src/core/cgroup.c index cfcf8ab1174..52243067c82 100644 --- a/src/core/cgroup.c +++ b/src/core/cgroup.c @@ -3531,8 +3531,7 @@ int unit_cgroup_is_empty(Unit *u) { r = cg_is_empty_recursive(SYSTEMD_CGROUP_CONTROLLER, crt->cgroup_path); if (r < 0) - return log_unit_debug_errno(u, r, "Failed to determine whether cgroup %s is empty, ignoring: %m", empty_to_root(crt->cgroup_path)); - + log_unit_debug_errno(u, r, "Failed to determine whether cgroup %s is empty: %m", empty_to_root(crt->cgroup_path)); return r; } -- 2.47.3