1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-27 01:49:03 +00:00

Increase the debug level required to print out the http.lua cache size.

This commit is contained in:
david
2010-09-27 18:51:04 +00:00
parent cd5f41fc91
commit 53bd35c9cd

View File

@@ -772,7 +772,7 @@ local function check_size (cache)
end
cache.size = size;
end
stdnse.print_debug(1, "Final http cache size (%d bytes) of max size of %d",
stdnse.print_debug(2, "Final http cache size (%d bytes) of max size of %d",
size, max_size);
return size;
end