From: Victor Julien Date: Mon, 15 Oct 2018 08:38:00 +0000 (+0200) Subject: rust/smb: suppress noisy messages X-Git-Tag: suricata-4.1.0-rc2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=daaa90d515bf2d7fd4f45f699c080f5f0f823445;p=thirdparty%2Fsuricata.git rust/smb: suppress noisy messages --- diff --git a/src/app-layer-smb-tcp-rust.c b/src/app-layer-smb-tcp-rust.c index bd3b5e12c7..a41658121c 100644 --- a/src/app-layer-smb-tcp-rust.c +++ b/src/app-layer-smb-tcp-rust.c @@ -49,7 +49,7 @@ static int RustSMBTCPParseRequest(Flow *f, void *state, local_data, flags); } if (res != 1) { - SCLogNotice("SMB request%s of %u bytes, retval %d", + SCLogDebug("SMB request%s of %u bytes, retval %d", (input == NULL && input_len > 0) ? " is GAP" : "", input_len, res); } return res; @@ -72,7 +72,7 @@ static int RustSMBTCPParseResponse(Flow *f, void *state, local_data, flags); } if (res != 1) { - SCLogNotice("SMB response%s of %u bytes, retval %d", + SCLogDebug("SMB response%s of %u bytes, retval %d", (input == NULL && input_len > 0) ? " is GAP" : "", input_len, res); } return res;