1
0
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:
Hemna 2021-08-25 08:25:36 -04:00
parent 81903534ed
commit ec92b07e31
2 changed files with 1 additions and 3 deletions

View File

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

View File

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