From 2e188e6f7aabb3cfb592c14fcd234eaa388472ee Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Fri, 25 Oct 2019 23:26:12 +0200 Subject: [PATCH] remove log messages --- bw_client.py | 1 - bw_server.py | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bw_client.py b/bw_client.py index 2118c8c..587e22e 100644 --- a/bw_client.py +++ b/bw_client.py @@ -51,7 +51,6 @@ from boswatch.utils import misc header.logoToLog() header.infoToLog() -logging.debug("parse args") # With -h or --help you get the Args help parser = argparse.ArgumentParser(prog="bw_client.py", description="""BOSWatch is a Python Script to receive and diff --git a/bw_server.py b/bw_server.py index 894d11f..5b0e6af 100644 --- a/bw_server.py +++ b/bw_server.py @@ -49,7 +49,6 @@ from boswatch.utils import misc header.logoToLog() header.infoToLog() -logging.debug("parse args") # With -h or --help you get the Args help parser = argparse.ArgumentParser(prog="bw_server.py", description="""BOSWatch is a Python Script to receive and @@ -99,7 +98,9 @@ try: bwPacket.set("clientIP", data[0]) misc.addServerDataToPacket(bwPacket, bwConfig) + logging.debug("[ --- ALARM --- ]") bwRoutMan.runRouters(bwConfig.get("alarmRouter"), bwPacket) + logging.debug("[ --- END ALARM --- ]") incomingQueue.task_done()