1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-23 16:09:02 +00:00

change debug level for missing decoders, more indent cleanup

This commit is contained in:
patrik
2013-03-16 03:18:24 +00:00
parent 560c97923b
commit 675000afe8
2 changed files with 42 additions and 42 deletions

View File

@@ -184,7 +184,7 @@ sniffInterface = function(iface, Decoders, decodertab)
end end
-- no decoder was found for this layer2 packet -- no decoder was found for this layer2 packet
if ( not(decoded) and #data > 10 ) then if ( not(decoded) and #data > 10 ) then
stdnse.print_debug(2, "No decoder for packet hex: %s", select(2, bin.unpack("H10", data) ) ) stdnse.print_debug(1, "No decoder for packet hex: %s", select(2, bin.unpack("H10", data) ) )
end end
end end
end end