From: Lennart Poettering Date: Wed, 10 Oct 2018 18:58:03 +0000 (+0200) Subject: import-util: downgrade log message about quota to LOG_DEBUG X-Git-Tag: v240~175^2~17 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b11591af2712d154ad3a083730650c6567e6e7c3;p=thirdparty%2Fsystemd.git import-util: downgrade log message about quota to LOG_DEBUG We invoke this usually on a temporary path before renaming it into place. This means the log message is quite suprising as it mentions a weird path with random characters in it. Hence, let's downgrade the message in order not to confuse the user. --- diff --git a/src/shared/import-util.c b/src/shared/import-util.c index d53b90796fa..bcd6c0c5ea1 100644 --- a/src/shared/import-util.c +++ b/src/shared/import-util.c @@ -160,7 +160,7 @@ int import_assign_pool_quota_and_warn(const char *path) { if (r < 0) return log_error_errno(r, "Failed to set up default quota hierarchy for %s: %m", path); if (r > 0) - log_info("Set up default quota hierarchy for %s.", path); + log_debug("Set up default quota hierarchy for %s.", path); return 0; }