From: Lennart Poettering Date: Wed, 20 May 2020 16:12:41 +0000 (+0200) Subject: homed: include error string when in log message if quota doesn't work X-Git-Tag: v246-rc1~305^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1a53adb3aba43405c204aeb22a544323f1ea4949;p=thirdparty%2Fsystemd.git homed: include error string when in log message if quota doesn't work --- diff --git a/src/home/homed-manager.c b/src/home/homed-manager.c index ea5791ae498..7d951bee3b1 100644 --- a/src/home/homed-manager.c +++ b/src/home/homed-manager.c @@ -513,7 +513,7 @@ static int search_quota(uid_t uid, const char *exclude_quota_path) { if (ERRNO_IS_NOT_SUPPORTED(r)) log_debug_errno(r, "No UID quota support on %s, ignoring.", where); else - log_warning_errno(r, "Failed to query quota on %s, ignoring.", where); + log_warning_errno(r, "Failed to query quota on %s, ignoring: %m", where); continue; }