]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
ike/detect: info log message should be debug
authorJason Ish <jason.ish@oisf.net>
Thu, 25 Sep 2025 17:02:08 +0000 (11:02 -0600)
committerJason Ish <jason.ish@oisf.net>
Thu, 16 Oct 2025 22:54:02 +0000 (16:54 -0600)
(cherry picked from commit b543e28402971f74dfd338d4598ee28bba340578)

rust/src/ike/detect.rs

index 3a7db4c12c6cb6e1cd9f85c5a16900a48b3f11a7..40605decbd05e0c439fabc5bd109bb62a5b06b99 100644 (file)
@@ -145,7 +145,7 @@ pub extern "C" fn SCIkeStateGetSaAttribute(
     let sa_type_s: Result<_, _>;
 
     unsafe { sa_type_s = CStr::from_ptr(sa_type).to_str() }
-    SCLogInfo!("{:#?}", sa_type_s);
+    SCLogDebug!("{:#?}", sa_type_s);
 
     if let Ok(sa) = sa_type_s {
         if tx.ike_version == 1 {