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.
pull/9714/head
Jason Ish 2 years ago committed by Victor Julien
parent a240a93b69
commit 7d60bb7139

@ -486,7 +486,7 @@ static void JsonDnsCheckVersion(ConfNode *conf)
break; break;
case 1: case 1:
if (!v1_deprecation_warned) { 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; v1_deprecation_warned = true;
} }
break; break;

Loading…
Cancel
Save