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.
This commit is contained in:
Lennart Poettering 2018-10-10 20:58:03 +02:00
parent 1295c9066a
commit b11591af27
1 changed files with 1 additions and 1 deletions

View 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;
}