From 53bd35c9cdb5bf7e80ae792c8ccf68dc89dd4f89 Mon Sep 17 00:00:00 2001 From: david Date: Mon, 27 Sep 2010 18:51:04 +0000 Subject: [PATCH] Increase the debug level required to print out the http.lua cache size. --- nselib/http.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nselib/http.lua b/nselib/http.lua index ae46db2db..3ce3ab679 100644 --- a/nselib/http.lua +++ b/nselib/http.lua @@ -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