From daaa90d515bf2d7fd4f45f699c080f5f0f823445 Mon Sep 17 00:00:00 2001 From: Victor Julien Date: Mon, 15 Oct 2018 10:38:00 +0200 Subject: [PATCH] rust/smb: suppress noisy messages --- src/app-layer-smb-tcp-rust.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;