From 0cdde7808b35fff2c3e643f090e186ca3a2acc2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Schotth=C3=B6fer?= Date: Tue, 26 Jan 2021 17:43:09 +0100 Subject: [PATCH] reduce loglevel for config option disovery notification --- includes/decoders/poc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/decoders/poc.py b/includes/decoders/poc.py index 1a0bc45..aafe44e 100644 --- a/includes/decoders/poc.py +++ b/includes/decoders/poc.py @@ -161,7 +161,7 @@ def decode(freq, decoded): # if a schema is defined, analyze and associate if globalVars.config.has_option("POC", "schemaRegex"): - logging.info("schemaRegex found") + logging.debug("schemaRegex found") m = re.match(globalVars.config.get("POC", "schemaRegex"), poc_text) if m: logging.info("POC Schema match")