mirror of
https://github.com/nmap/nmap.git
synced 2025-12-07 05:01:29 +00:00
10 lines
220 B
Lua
10 lines
220 B
Lua
print_debug = function(...)
|
|
local verbosity = 1;
|
|
if ((#arg > 1) and (tonumber(arg[1]))) then
|
|
verbosity = table.remove(arg, 1);
|
|
end
|
|
|
|
nmap.print_debug_unformatted(verbosity, string.format(unpack(arg, start)));
|
|
end
|
|
|