From: Victor Julien Date: Tue, 10 Sep 2019 11:18:20 +0000 (+0200) Subject: rust/conf: don't print failed conf lookups at info level X-Git-Tag: suricata-5.0.0-rc1~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85ba2e16babbb8d4803c53a3ac19c5edb0840657;p=thirdparty%2Fsuricata.git rust/conf: don't print failed conf lookups at info level --- diff --git a/rust/src/conf.rs b/rust/src/conf.rs index c1cc209ddf..e5b40f8447 100644 --- a/rust/src/conf.rs +++ b/rust/src/conf.rs @@ -38,7 +38,7 @@ pub fn conf_get(key: &str) -> Option<&str> { unsafe { if ConfGet(CString::new(key).unwrap().as_ptr(), &mut vptr) != 1 { - SCLogInfo!("Failed to find value for key {}", key); + SCLogDebug!("Failed to find value for key {}", key); return None; } }