From 567303ee9924400b863a04c858cbfc193518a6b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Schotth=C3=B6fer?= Date: Tue, 26 Jan 2021 19:18:18 +0100 Subject: [PATCH] Decrease two more logging occurrences --- includes/decoders/poc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/decoders/poc.py b/includes/decoders/poc.py index aafe44e..7c5fec5 100644 --- a/includes/decoders/poc.py +++ b/includes/decoders/poc.py @@ -164,12 +164,12 @@ def decode(freq, decoded): logging.debug("schemaRegex found") m = re.match(globalVars.config.get("POC", "schemaRegex"), poc_text) if m: - logging.info("POC Schema match") + logging.debug("POC Schema match") # enrich data structure by regex groups data.update(m.groupdict()) data["has_schema_fields"] = True else: - logging.info("No POC Schema match") + logging.debug("No POC Schema match") if has_geo == True: data["lon"] = lon