From: Franck Bui Date: Tue, 26 Nov 2019 10:33:08 +0000 (+0100) Subject: core: explicit mention of unit ID is redundant with log_unit_*() X-Git-Tag: v245-rc2~83^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=29a743f99346ca0eae0fbf7389307bad873fb1be;p=thirdparty%2Fsystemd.git core: explicit mention of unit ID is redundant with log_unit_*() --- diff --git a/src/core/unit.c b/src/core/unit.c index 399a8cf655b..86ed535ba57 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);