From: Lennart Poettering Date: Tue, 9 Oct 2018 14:44:04 +0000 (+0200) Subject: path-lookup: downgrade logging in lookup_paths_init() a bit X-Git-Tag: v240~585^2~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fc37d875a1c6cb00379399adb67f67858ee95403;p=thirdparty%2Fsystemd.git path-lookup: downgrade logging in lookup_paths_init() a bit So far lookup_paths_init() did not log on its own beyond LOG_DEBUG, fix one exception, in order to avoid duplicate logging. --- diff --git a/src/shared/path-lookup.c b/src/shared/path-lookup.c index 7d7b890b472..075f4d1e6cb 100644 --- a/src/shared/path-lookup.c +++ b/src/shared/path-lookup.c @@ -529,7 +529,7 @@ int lookup_paths_init( if (flags & LOOKUP_PATHS_TEMPORARY_GENERATED) { r = mkdtemp_malloc("/tmp/systemd-temporary-XXXXXX", &tempdir); if (r < 0) - return log_error_errno(r, "Failed to create temporary directory: %m"); + return log_debug_errno(r, "Failed to create temporary directory: %m"); } /* Note: when XDG_RUNTIME_DIR is not set this will not return -ENXIO, but simply set runtime_config to NULL */