From: Lennart Poettering Date: Fri, 12 Jan 2024 11:03:00 +0000 (+0100) Subject: json: downgrade extension log message to LOG_DEBUG X-Git-Tag: v256-rc1~1177 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f4220d8c05daabc99a36c82323761bde8df61902;p=thirdparty%2Fsystemd.git json: downgrade extension log message to LOG_DEBUG This is not supposed to be something we should complain about loudly after all. Follow-up for: a617fd904789cd3a05cf4cb2f54649e2a1f73d33 --- diff --git a/src/shared/json.c b/src/shared/json.c index 5bb447ba917..0259196e4e2 100644 --- a/src/shared/json.c +++ b/src/shared/json.c @@ -4623,7 +4623,7 @@ int json_dispatch_full( } else { if (flags & JSON_ALLOW_EXTENSIONS) { - json_log(value, flags, 0, "Unrecognized object field '%s', assuming extension.", json_variant_string(key)); + json_log(value, flags|JSON_DEBUG, 0, "Unrecognized object field '%s', assuming extension.", json_variant_string(key)); continue; }