From 595d88cdc86afdf40127282d711c5985c85fed9b Mon Sep 17 00:00:00 2001 From: Alexis-Emmanuel Haeringer <1693983+4lex11s@users.noreply.github.com> Date: Thu, 11 Dec 2025 22:36:23 +0100 Subject: [PATCH] conf-files: include the expected suffix in the 'unexpected suffix' debug message. --- src/basic/conf-files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.3