chiark / gitweb /
treewide: auto-convert the simple cases to log_*_errno()
[elogind.git] / src / cgroups-agent / cgroups-agent.c
index e581fbc9b6afb64cd2cf6c4fc2a103369b6cfa1e..1b215b99ab327066300f588037bc65ae6a90bbae 100644 (file)
@@ -48,7 +48,7 @@ int main(int argc, char *argv[]) {
                 /* If we couldn't connect we assume this was triggered
                  * while systemd got restarted/transitioned from
                  * initrd to the system, so let's ignore this */
-                log_debug("Failed to get D-Bus connection: %s", strerror(-r));
+                log_debug_errno(-r, "Failed to get D-Bus connection: %m");
                 return EXIT_FAILURE;
         }
 
@@ -58,7 +58,7 @@ int main(int argc, char *argv[]) {
                                "Released",
                                "s", argv[1]);
         if (r < 0) {
-                log_debug("Failed to send signal message on private connection: %s", strerror(-r));
+                log_debug_errno(-r, "Failed to send signal message on private connection: %m");
                 return EXIT_FAILURE;
         }