diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-10-20 00:46:33 +0900 |
---|---|---|
committer | Yu Watanabe <watanabe.yu+github@gmail.com> | 2018-10-20 00:46:33 +0900 |
commit | 0c7539634f4cb7656235feb753e49eab31d0d33c (patch) | |
tree | 5bcd6a63017a04eaf419b6eab93f312305addf0e /src/analyze | |
parent | e95a86c79e77656bda06d0071147cee856fb39f7 (diff) | |
download | systemd-0c7539634f4cb7656235feb753e49eab31d0d33c.tar.gz |
analyze: include error cause in the log message
Diffstat (limited to 'src/analyze')
-rw-r--r-- | src/analyze/analyze.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/analyze/analyze.c b/src/analyze/analyze.c index 54dd7de105..0b580d1b64 100644 --- a/src/analyze/analyze.c +++ b/src/analyze/analyze.c @@ -506,7 +506,7 @@ static int pretty_boot_time(sd_bus *bus, char **_buf) { "ActiveEnterTimestampMonotonic", &activated_time); if (r < 0) { - log_info_errno(r, "Could not get time to reach default.target. Continuing..."); + log_info_errno(r, "Could not get time to reach default.target, ignoring: %m"); activated_time = USEC_INFINITY; } |