From b11591af2712d154ad3a083730650c6567e6e7c3 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 10 Oct 2018 20:58:03 +0200 Subject: [PATCH] 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. --- src/shared/import-util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/import-util.c b/src/shared/import-util.c index d53b90796f..bcd6c0c5ea 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; }