get rid of some debug noise from tracker and email delay

This commit is contained in:
Craig Lamparter 2021-01-14 10:51:00 -08:00
parent 18acd64334
commit 7e3b95fd01
2 changed files with 2 additions and 2 deletions

View File

@ -358,7 +358,7 @@ class APRSDEmailThread(threads.APRSDThread):
# any send/receive/resend activity will reset this to 60 seconds
if check_email_delay < 300:
check_email_delay += 1
LOG.debug("check_email_delay is " + str(check_email_delay) + " seconds")
# LOG.debug("check_email_delay is " + str(check_email_delay) + " seconds")
shortcuts = CONFIG["shortcuts"]
# swap key/value

View File

@ -446,7 +446,7 @@ def server(loglevel, quiet, disable_validation, config_file, flush):
# to keep the log noise down
if cntr % 6 == 0:
tracker = messaging.MsgTrack()
LOG.debug("KeepAlive Tracker({}): {}".format(len(tracker), str(tracker)))
# LOG.debug("KeepAlive Tracker({}): {}".format(len(tracker), str(tracker)))
cntr += 1
time.sleep(10)