From b0a5cb57fe525f878e4a4864fe22ed9b9e9c59ea Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Fri, 25 Oct 2019 18:40:25 +0200 Subject: [PATCH] add import log msg --- boswatch/router/route.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/boswatch/router/route.py b/boswatch/router/route.py index 4077076..42072f5 100644 --- a/boswatch/router/route.py +++ b/boswatch/router/route.py @@ -15,6 +15,10 @@ @description: Class for a single BOSWatch packet router route point """ +import logging + +logging.debug("- %s loaded", __name__) + class Route: """!Class for single routing points"""