diff --git a/src/core/path.c b/src/core/path.c index e0dc93aabd7..c9ea31a74ea 100644 --- a/src/core/path.c +++ b/src/core/path.c @@ -591,7 +591,7 @@ static void path_enter_waiting(Path *p, bool initial, bool from_trigger_notify) } if (path_check_good(p, initial, from_trigger_notify, &trigger_path)) { - log_unit_debug(UNIT(p), "Got triggered."); + log_unit_debug(UNIT(p), "Got triggered by '%s'.", trigger_path); path_enter_running(p, trigger_path); return; } @@ -608,7 +608,7 @@ static void path_enter_waiting(Path *p, bool initial, bool from_trigger_notify) * recheck */ if (path_check_good(p, false, from_trigger_notify, &trigger_path)) { - log_unit_debug(UNIT(p), "Got triggered."); + log_unit_debug(UNIT(p), "Got triggered by '%s'.", trigger_path); path_enter_running(p, trigger_path); return; }