From 290776a28694cbf018691b077d2ebf797bb628a0 Mon Sep 17 00:00:00 2001 From: DL6ER Date: Tue, 10 Aug 2021 12:13:23 +0200 Subject: [PATCH] Log if there was no detection made by the module Signed-off-by: DL6ER --- mvt/common/module.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mvt/common/module.py b/mvt/common/module.py index bf40202..9d88768 100644 --- a/mvt/common/module.py +++ b/mvt/common/module.py @@ -167,6 +167,8 @@ def run_module(module): else: try: module.check_indicators() + if not module.detected: + module.log.info("No detection!") except NotImplementedError: pass