[systemd-devel] [PATCH 1/2] systemd: log failed conditions

Zbigniew Jędrzejewski-Szmek zbyszek at in.waw.pl
Wed Jun 26 05:11:17 PDT 2013


ConditionPathExists=/tmp/nosuchpath failed for nosuchpath.service.
---
Harald,
this goes in a slightly different direction than your changes, but both
would be probably useful. What do you think?

Zbyszek

 src/core/condition.c | 12 +++++++++++-
 src/core/condition.h |  2 +-
 src/core/unit.c      |  2 +-
 3 files changed, 13 insertions(+), 3 deletions(-)

diff --git a/src/core/condition.c b/src/core/condition.c
index b2617ef..3807398 100644
--- a/src/core/condition.c
+++ b/src/core/condition.c
@@ -37,6 +37,7 @@
 #include "virt.h"
 #include "path-util.h"
 #include "fileio.h"
+#include "unit.h"
 
 Condition* condition_new(ConditionType type, const char *parameter, bool trigger, bool negate) {
         Condition *c;
@@ -333,7 +334,7 @@ bool condition_test(Condition *c) {
         }
 }
 
-bool condition_test_list(Condition *first) {
+bool condition_test_list(const char *unit, Condition *first) {
         Condition *c;
         int triggered = -1;
 
@@ -348,6 +349,15 @@ bool condition_test_list(Condition *first) {
                 bool b;
 
                 b = condition_test(c);
+                if (unit)
+                        log_full_unit(b ? LOG_DEBUG : LOG_NOTICE, unit,
+                                      "%s=%s%s%s %s for %s.",
+                                      condition_type_to_string(c->type),
+                                      c->trigger ? "|" : "",
+                                      c->negate ? "!" : "",
+                                      c->parameter,
+                                      b ? "succeeded" : "failed",
+                                      unit);
 
                 if (!c->trigger && !b)
                         return false;
diff --git a/src/core/condition.h b/src/core/condition.h
index 50ed955..2ad7787 100644
--- a/src/core/condition.h
+++ b/src/core/condition.h
@@ -61,7 +61,7 @@ void condition_free(Condition *c);
 void condition_free_list(Condition *c);
 
 bool condition_test(Condition *c);
-bool condition_test_list(Condition *c);
+bool condition_test_list(const char *unit, Condition *c);
 
 void condition_dump(Condition *c, FILE *f, const char *prefix);
 void condition_dump_list(Condition *c, FILE *f, const char *prefix);
diff --git a/src/core/unit.c b/src/core/unit.c
index f75045d..8a00fea 100644
--- a/src/core/unit.c
+++ b/src/core/unit.c
@@ -958,7 +958,7 @@ bool unit_condition_test(Unit *u) {
         assert(u);
 
         dual_timestamp_get(&u->condition_timestamp);
-        u->condition_result = condition_test_list(u->conditions);
+        u->condition_result = condition_test_list(u->id, u->conditions);
 
         return u->condition_result;
 }
-- 
1.8.2.562.g931e949



More information about the systemd-devel mailing list