From 79c3d6f2aace10f780fb142f4150c13b8c6da420 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 30 Mar 2012 10:37:46 +0000 Subject: [PATCH] minor update --- lib/core/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/common.py b/lib/core/common.py index c7ee9bbcf..6b774a5cc 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -2655,8 +2655,8 @@ def removeReflectiveValues(content, payload, suppressWarning=False): if retVal != content: kb.reflectiveCounters[REFLECTIVE_COUNTER.HIT] += 1 if not suppressWarning: - debugMsg = "reflective value found and filtered out" - logger.debug(debugMsg) + warnMsg = "reflective value(s) found and filtering out" + singleTimeWarnMessage(warnMsg) elif not kb.testMode and not kb.reflectiveCounters[REFLECTIVE_COUNTER.HIT]: kb.reflectiveCounters[REFLECTIVE_COUNTER.MISS] += 1