1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-09 14:11:29 +00:00

nselib stdnse.print_debug -> stdnse.debug

Manual fixes.
This commit is contained in:
batrick
2014-08-03 01:17:09 +00:00
parent ee6622aea4
commit 4b9f1c6766
11 changed files with 49 additions and 52 deletions

View File

@@ -232,9 +232,9 @@ TestSuite = {
failures = failures + 1
end
if note then
stdnse.print_debug(lvl, "| \\_result: %s (%s)", result, note)
stdnse.debug(lvl, "| \\_result: %s (%s)", result, note)
else
stdnse.print_debug(lvl, "| \\_result: %s", result)
stdnse.debug(lvl, "| \\_result: %s", result)
end
end
stdnse.debug1("|_%d of %d tests passed", passes, #self.tests)