diff options
author | Mirco Tischler <mt-ml@gmx.de> | 2013-04-25 15:14:57 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-04-25 21:50:48 -0400 |
commit | fcf8c44041a5138a170f9a442809c032259a26b1 (patch) | |
tree | 281e6dfdfabf40d6a25d53c821c7b7fd9669f67f /src/core/unit.c | |
parent | 2a371001f8d23533a339a150eeffa3215773058d (diff) |
core: remove duplicate MESSAGE= from log message
This was needed with log_struct_unit() but log_notice_unit() adds it
anyway.
Diffstat (limited to 'src/core/unit.c')
-rw-r--r-- | src/core/unit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/unit.c b/src/core/unit.c index 7029b6443e..282852fed3 100644 --- a/src/core/unit.c +++ b/src/core/unit.c @@ -1468,7 +1468,7 @@ void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns, bool reload_su if (ns != os && ns == UNIT_FAILED) { log_notice_unit(u->id, - "MESSAGE=Unit %s entered failed state.", u->id); + "Unit %s entered failed state.", u->id); unit_start_on_failure(u); } } |