From: Luca Boccassi Date: Mon, 20 Jan 2025 19:05:11 +0000 (+0000) Subject: nspawn: downgrade log message about usrquota to debug X-Git-Tag: v258-rc1~1550 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8fa7863a93047d310ec6600f939590f07854b497;p=thirdparty%2Fsystemd.git nspawn: downgrade log message about usrquota to debug This is shown every time nspawn is started, which is annoying and there's nothing a user can do about it, since it depends on an extremely new kernel. Downgrade to debug. Follow-up for 611ae598889471830b2f1d7251c271b79884b1c4 --- diff --git a/src/nspawn/nspawn-mount.c b/src/nspawn/nspawn-mount.c index b666a3585dd..0f1fff375ce 100644 --- a/src/nspawn/nspawn-mount.c +++ b/src/nspawn/nspawn-mount.c @@ -711,7 +711,7 @@ int mount_all(const char *dest, if (r < 0) log_warning_errno(r, "Failed to determine if '%s' supports 'usrquota', assuming it doesn't: %m", m->type); else if (r == 0) - log_info("Kernel doesn't support 'usrquota' on '%s', not including in mount options for '%s'.", m->type, m->where); + log_debug("Kernel doesn't support 'usrquota' on '%s', not including in mount options for '%s'.", m->type, m->where); else { _cleanup_free_ char *joined = NULL;