summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorFranck Bui <fbui@suse.com>2019-11-26 11:33:08 +0100
committerFranck Bui <fbui@suse.com>2020-01-10 14:20:28 +0100
commit29a743f99346ca0eae0fbf7389307bad873fb1be (patch)
tree598e30b3fb7eb55613366111e4f53a9c6491d3df /src/core
parent0e05be8405132fb392bc0bd01ea520e58d447467 (diff)
downloadsystemd-29a743f99346ca0eae0fbf7389307bad873fb1be.tar.gz
core: explicit mention of unit ID is redundant with log_unit_*()
Diffstat (limited to 'src/core')
-rw-r--r--src/core/unit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/unit.c b/src/core/unit.c
index 399a8cf655..86ed535ba5 100644
--- a/src/core/unit.c
+++ b/src/core/unit.c
@@ -5318,7 +5318,7 @@ static void unit_update_dependency_mask(Unit *u, UnitDependency d, Unit *other,
if (di.origin_mask == 0 && di.destination_mask == 0) {
/* No bit set anymore, let's drop the whole entry */
assert_se(hashmap_remove(u->dependencies[d], other));
- log_unit_debug(u, "%s lost dependency %s=%s", u->id, unit_dependency_to_string(d), other->id);
+ log_unit_debug(u, "lost dependency %s=%s", unit_dependency_to_string(d), other->id);
} else
/* Mask was reduced, let's update the entry */
assert_se(hashmap_update(u->dependencies[d], other, di.data) == 0);