]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
rust/smb: suppress noisy messages
authorVictor Julien <victor@inliniac.net>
Mon, 15 Oct 2018 08:38:00 +0000 (10:38 +0200)
committerVictor Julien <victor@inliniac.net>
Mon, 15 Oct 2018 08:38:00 +0000 (10:38 +0200)
src/app-layer-smb-tcp-rust.c

index bd3b5e12c73f040edb0bd70962ef03ee48fad889..a41658121cfb1d45c3c9f8503a9a5b2ffb50b6b6 100644 (file)
@@ -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;