From 140846aca188bce64048cc9a0a3cc9a7e1e9ae82 Mon Sep 17 00:00:00 2001 From: dmiller Date: Tue, 18 Nov 2014 03:53:24 +0000 Subject: [PATCH] Remove a leftover debug from stdnse.format_time --- nselib/stdnse.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/nselib/stdnse.lua b/nselib/stdnse.lua index c4e146380..81622e973 100644 --- a/nselib/stdnse.lua +++ b/nselib/stdnse.lua @@ -569,7 +569,6 @@ end function format_time(interval, unit) unit = unit or 1 local precision = floor(math.log(unit, 10)) - debug1("precision: %d, unit: %d", precision, unit) local sec = (interval % (60 * unit)) / unit interval = floor(interval / (60 * unit))