rust/conf: don't print failed conf lookups at info level

pull/4188/head
Victor Julien 5 years ago
parent c1b333c96e
commit 85ba2e16ba

@ -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;
}
}

Loading…
Cancel
Save