From: Daan De Meyer Date: Mon, 3 Feb 2025 08:48:35 +0000 (+0100) Subject: user-runtime-dir: Log the quota limit in the warning message on failure X-Git-Tag: v258-rc1~1434 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7ebe910c88e3549a0e448a7958f27e17a3ac6646;p=thirdparty%2Fsystemd.git user-runtime-dir: Log the quota limit in the warning message on failure --- diff --git a/src/login/user-runtime-dir.c b/src/login/user-runtime-dir.c index 94117c95db7..3b5d46a0c9b 100644 --- a/src/login/user-runtime-dir.c +++ b/src/login/user-runtime-dir.c @@ -284,7 +284,7 @@ static int apply_tmpfs_quota( log_debug_errno(r, "Lacking privileges to set UID quota on %s, skipping: %m", *p); continue; } else if (r < 0) { - log_warning_errno(r, "Failed to set disk quota on %s for UID " UID_FMT ", ignoring: %m", *p, uid); + log_warning_errno(r, "Failed to set disk quota limit to '%s' on %s for UID " UID_FMT ", ignoring: %m", FORMAT_BYTES(v), *p, uid); continue; }