summaryrefslogtreecommitdiff
path: root/src/systemctl/systemctl.c
diff options
context:
space:
mode:
authorRonny Chevalier <chevalier.ronny@gmail.com>2016-03-05 12:47:21 +0100
committerRonny Chevalier <chevalier.ronny@gmail.com>2016-03-05 12:47:21 +0100
commit0b8505b7c9b1d90a29013091bcce23540ae1c92c (patch)
tree47645e2d30e146d298e3e0b599e3457c6e603ad1 /src/systemctl/systemctl.c
parent9f0cd100d0dbc7c9b55e99bacb4034402a60b389 (diff)
systemctl: improve error message when starting a unit failed
Fixes #2798
Diffstat (limited to 'src/systemctl/systemctl.c')
-rw-r--r--src/systemctl/systemctl.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c
index a62f4bf2f5..19d4e2c6e5 100644
--- a/src/systemctl/systemctl.c
+++ b/src/systemctl/systemctl.c
@@ -2596,7 +2596,10 @@ static int start_unit_one(
if (!sd_bus_error_has_name(error, BUS_ERROR_NO_SUCH_UNIT) &&
!sd_bus_error_has_name(error, BUS_ERROR_UNIT_MASKED))
- log_error("See system logs and 'systemctl status %s' for details.", name);
+ log_error("See %s logs and 'systemctl%s status %s' for details.",
+ arg_scope == UNIT_FILE_SYSTEM ? "system" : "user",
+ arg_scope == UNIT_FILE_SYSTEM ? "" : " --user",
+ name);
return r;
}