Skip to content

Commit

Permalink
Silence some log noise
Browse files Browse the repository at this point in the history
Removed an email thread log at the start of the loop.
Also bumped the Keepalivethread time to 60 seconds
  • Loading branch information
hemna committed Aug 25, 2021
1 parent 8190353 commit ec92b07
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions aprsd/plugins/email.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,8 +537,6 @@ def __init__(self, msg_queues, config):
def loop(self):
global check_email_delay

LOG.debug("Starting Loop")

check_email_delay = 60
time.sleep(5)
stats.APRSDStats().email_thread_update()
Expand Down
2 changes: 1 addition & 1 deletion aprsd/threads.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def __init__(self, config):
self.config = config

def loop(self):
if self.cntr % 6 == 0:
if self.cntr % 60 == 0:
tracker = messaging.MsgTrack()
stats_obj = stats.APRSDStats()
pl = packets.PacketList()
Expand Down

0 comments on commit ec92b07

Please sign in to comment.