From: Mike Yuan Date: Fri, 27 Feb 2026 16:08:27 +0000 (+0100) Subject: tmpfiles: downgrade log level for non-existent symlink target X-Git-Tag: v260-rc2~60^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=476d0d76434211a39b0f03bc4c4f7fd26bf4a810;p=thirdparty%2Fsystemd.git tmpfiles: downgrade log level for non-existent symlink target I'm seeing a *lot* of noise induced by missing varlink sockets under /run/host/ after 336369393588fcdf20e37d4c766e119db0b2f781. --- diff --git a/src/tmpfiles/tmpfiles.c b/src/tmpfiles/tmpfiles.c index fcff090af30..da75ffb8181 100644 --- a/src/tmpfiles/tmpfiles.c +++ b/src/tmpfiles/tmpfiles.c @@ -2384,8 +2384,8 @@ static int create_symlink(Context *c, Item *i) { r = chase(i->argument, arg_root, CHASE_SAFE|CHASE_PREFIX_ROOT|CHASE_NOFOLLOW, /* ret_path= */ NULL, /* ret_fd= */ NULL); if (r == -ENOENT) { /* Silently skip over lines where the source file is missing. */ - log_info("Symlink source path '%s/%s' does not exist, skipping line.", - strempty(arg_root), skip_leading_slash(i->argument)); + log_debug_errno(r, "Symlink source path '%s/%s' does not exist, skipping line.", + strempty(arg_root), skip_leading_slash(i->argument)); return 0; } if (r < 0)