1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-08-17 17:13:49 -04:00

Compare commits

...

2 Commits

Author SHA1 Message Date
hemna 44c4dd69c6 Update Changelog for 2.2.1 2021-08-25 08:28:21 -04:00
hemna ec92b07e31 Silence some log noise
Removed an email thread log at the start of the loop.
Also bumped the Keepalivethread time to 60 seconds
2021-08-25 08:25:36 -04:00
3 changed files with 7 additions and 3 deletions
+6
View File
@@ -1,9 +1,15 @@
CHANGES
=======
v2.2.1
------
* Silence some log noise
v2.2.0
------
* Updated Changelog for v2.2.0
* Updated overview image
* Removed Black code style reference
* Removed TXThread
-2
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()
+1 -1
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()