From b543e28402971f74dfd338d4598ee28bba340578 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Thu, 25 Sep 2025 11:02:08 -0600 Subject: [PATCH] ike/detect: info log message should be debug --- rust/src/ike/detect.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/src/ike/detect.rs b/rust/src/ike/detect.rs index 3a7db4c12c..40605decbd 100644 --- a/rust/src/ike/detect.rs +++ b/rust/src/ike/detect.rs @@ -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 {