]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
import-util: downgrade log message about quota to LOG_DEBUG
authorLennart Poettering <lennart@poettering.net>
Wed, 10 Oct 2018 18:58:03 +0000 (20:58 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 26 Nov 2018 17:09:01 +0000 (18:09 +0100)
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

index d53b90796faa7fa42e00bd757d18c449d20f316d..bcd6c0c5ea17554865dfb9c6b2fd4f7527ca4edc 100644 (file)
@@ -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;
 }