From 29a743f99346ca0eae0fbf7389307bad873fb1be Mon Sep 17 00:00:00 2001 From: Franck Bui Date: Tue, 26 Nov 2019 11:33:08 +0100 Subject: core: explicit mention of unit ID is redundant with log_unit_*() --- src/core/unit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core') 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); -- cgit v1.2.1