From: Jason Ish Date: Mon, 30 Oct 2023 18:16:33 +0000 (-0600) Subject: dns/eve: make removed v1 style a warning, not an error X-Git-Tag: suricata-7.0.3~91 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d60bb71397fa2c23eea06decdc1f6761deabfae;p=thirdparty%2Fsuricata.git dns/eve: make removed v1 style a warning, not an error We don't error out in this case, but instead default to v2. So use a warning instead of an error. --- diff --git a/src/output-json-dns.c b/src/output-json-dns.c index cd3ccac29d..020e27853a 100644 --- a/src/output-json-dns.c +++ b/src/output-json-dns.c @@ -486,7 +486,7 @@ static void JsonDnsCheckVersion(ConfNode *conf) break; case 1: if (!v1_deprecation_warned) { - SCLogError("DNS EVE v1 logging has been removed, will use v2"); + SCLogWarning("DNS EVE v1 logging has been removed, will use v2"); v1_deprecation_warned = true; } break;