remove log messages

This commit is contained in:
Bastian Schroll 2019-10-25 23:26:12 +02:00
parent 2498bdd5d4
commit 2e188e6f7a
No known key found for this signature in database
GPG key ID: 0AE96912A20E9F5F
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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()