]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
rust/conf: don't print failed conf lookups at info level
authorVictor Julien <victor@inliniac.net>
Tue, 10 Sep 2019 11:18:20 +0000 (13:18 +0200)
committerVictor Julien <victor@inliniac.net>
Tue, 10 Sep 2019 11:18:20 +0000 (13:18 +0200)
rust/src/conf.rs

index c1cc209ddfd00ed27955f01bf306c69d41569e34..e5b40f8447589152a6f851d94cc2da13f85a6966 100644 (file)
@@ -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;
         }
     }