mirror of
https://github.com/craigerl/aprsd.git
synced 2024-12-20 08:31:11 -05:00
Silence some log noise
Removed an email thread log at the start of the loop. Also bumped the Keepalivethread time to 60 seconds
This commit is contained in:
parent
81903534ed
commit
ec92b07e31
@ -537,8 +537,6 @@ class APRSDEmailThread(threads.APRSDThread):
|
||||
def loop(self):
|
||||
global check_email_delay
|
||||
|
||||
LOG.debug("Starting Loop")
|
||||
|
||||
check_email_delay = 60
|
||||
time.sleep(5)
|
||||
stats.APRSDStats().email_thread_update()
|
||||
|
@ -90,7 +90,7 @@ class KeepAliveThread(APRSDThread):
|
||||
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()
|
||||
|
Loading…
Reference in New Issue
Block a user