From 01474f6272985d6f13590eb49e1c84bb5c249447 Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Thu, 12 Jul 2012 01:19:36 +0100 Subject: [PATCH] proper debug message added - issue #75 --- plugins/generic/enumeration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/generic/enumeration.py b/plugins/generic/enumeration.py index 6ef226d6c..ad8f161d6 100644 --- a/plugins/generic/enumeration.py +++ b/plugins/generic/enumeration.py @@ -1742,7 +1742,7 @@ class Enumeration: # Skip enumeration of cells that have a value length of 0 if not inject.checkBooleanExpression(agent.forgeQueryOutputLengthZero(query)): - logger.debug(query) + logger.debug("column '%s', entry %d is blank" % (column, index+1)) value = "" else: value = inject.getValue(query, inband=False, error=False, dump=True)