diff --git a/aprsd/threads/registry.py b/aprsd/threads/registry.py index beba3c4..503bc18 100644 --- a/aprsd/threads/registry.py +++ b/aprsd/threads/registry.py @@ -26,6 +26,11 @@ class APRSRegistryThread(aprsd_threads.APRSDThread): "APRS Registry thread is STOPPING.", ) self.stop() + LOG.info( + "APRS Registry thread is running and will send " + f"info every {CONF.aprs_registry.frequency_seconds} seconds " + f"to {CONF.aprs_registry.registry_url}.", + ) def loop(self): # Only call the registry every N seconds diff --git a/aprsd/threads/tx.py b/aprsd/threads/tx.py index d81f1c1..bfd95f9 100644 --- a/aprsd/threads/tx.py +++ b/aprsd/threads/tx.py @@ -214,6 +214,10 @@ class BeaconSendThread(aprsd_threads.APRSDThread): "Beacon will not be sent and thread is STOPPED.", ) self.stop() + LOG.info( + "Beacon thread is running and will send " + f"beacons every {CONF.beacon_interval} seconds.", + ) def loop(self): # Only dump out the stats every N seconds