diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-02-14 23:10:31 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-02-14 23:10:31 +0100 |
commit | 3036c489fa503031acb9a2fba1f3537cbe59ae9e (patch) | |
tree | e9a5bfdecb356efd40edc49189106191505f2af4 /src | |
parent | a4477e68524ea7aeadd57028ff83319cb2c83620 (diff) |
job: make status message printing more verbose
Diffstat (limited to 'src')
-rw-r--r-- | src/job.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -498,7 +498,7 @@ int job_finish_and_invalidate(Job *j, bool success) { job_free(j); if (!success && j->type == JOB_START) - unit_status_printf(u, "Starting %s " ANSI_HIGHLIGHT_ON "failed" ANSI_HIGHLIGHT_OFF ".\n", unit_description(u)); + unit_status_printf(u, "Starting %s " ANSI_HIGHLIGHT_ON "failed" ANSI_HIGHLIGHT_OFF ", see 'systemctl status %s' for details.\n", unit_description(u), u->meta.id); /* Fail depending jobs on failure */ if (!success) { |