From 7d60bb71397fa2c23eea06decdc1f6761deabfae Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Mon, 30 Oct 2023 12:16:33 -0600 Subject: [PATCH] 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. --- src/output-json-dns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2