diff options
Diffstat (limited to 'src/console/consoled.c')
-rw-r--r-- | src/console/consoled.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/console/consoled.c b/src/console/consoled.c index b0c9eda1ac..f76a357c97 100644 --- a/src/console/consoled.c +++ b/src/console/consoled.c @@ -45,7 +45,7 @@ int main(int argc, char *argv[]) { r = manager_new(&m); if (r < 0) { - log_error("Could not create manager: %s", strerror(-r)); + log_error_errno(-r, "Could not create manager: %m"); goto out; } @@ -55,7 +55,7 @@ int main(int argc, char *argv[]) { r = manager_run(m); if (r < 0) { - log_error("Cannot run manager: %s", strerror(-r)); + log_error_errno(-r, "Cannot run manager: %m"); goto out; } |