rust/smb: suppress noisy messages

pull/3511/head
Victor Julien 7 years ago
parent c4d8508f51
commit daaa90d515

@ -49,7 +49,7 @@ static int RustSMBTCPParseRequest(Flow *f, void *state,
local_data, flags); local_data, flags);
} }
if (res != 1) { 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); (input == NULL && input_len > 0) ? " is GAP" : "", input_len, res);
} }
return res; return res;
@ -72,7 +72,7 @@ static int RustSMBTCPParseResponse(Flow *f, void *state,
local_data, flags); local_data, flags);
} }
if (res != 1) { 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); (input == NULL && input_len > 0) ? " is GAP" : "", input_len, res);
} }
return res; return res;

Loading…
Cancel
Save