From: Alexis-Emmanuel Haeringer <1693983+4lex11s@users.noreply.github.com> Date: Thu, 11 Dec 2025 21:36:23 +0000 (+0100) Subject: conf-files: include the expected suffix in the 'unexpected suffix' debug message. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=595d88cdc86afdf40127282d711c5985c85fed9b;p=thirdparty%2Fsystemd.git conf-files: include the expected suffix in the 'unexpected suffix' debug message. --- diff --git a/src/basic/conf-files.c b/src/basic/conf-files.c index 77affe269cd..7e1ff4f90b0 100644 --- a/src/basic/conf-files.c +++ b/src/basic/conf-files.c @@ -239,7 +239,7 @@ static int files_add( /* Does this match the suffix? */ if (suffix && !endswith(de->d_name, suffix)) { - log_debug("Skipping file '%s/%s' with unexpected suffix.", root, skip_leading_slash(original_path)); + log_debug("Skipping file '%s/%s', suffix is not '%s'.", root, skip_leading_slash(original_path), suffix); continue; }