From c7a160bf72d564454fb5d594b61c89f49f1f9219 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 27 Dec 2010 12:00:54 +0000 Subject: [PATCH] minor update (users want this to see) --- lib/techniques/brute/use.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/techniques/brute/use.py b/lib/techniques/brute/use.py index a664a3f30..0bdbbc889 100644 --- a/lib/techniques/brute/use.py +++ b/lib/techniques/brute/use.py @@ -77,8 +77,8 @@ def tableExists(tableFile, regex=None): iolock.release() if conf.threads > 1: - debugMsg = "starting %d threads" % conf.threads - logger.debug(debugMsg) + infoMsg = "starting %d threads" % conf.threads + logger.info(infoMsg) else: warnMsg = "running in a single-thread mode. this could take a while." logger.warn(warnMsg) @@ -179,8 +179,8 @@ def columnExists(columnFile, regex=None): iolock.release() if conf.threads > 1: - debugMsg = "starting %d threads" % conf.threads - logger.debug(debugMsg) + infoMsg = "starting %d threads" % conf.threads + logger.info(infoMsg) else: warnMsg = "running in a single-thread mode. this could take a while." logger.warn(warnMsg)