From 9c5aea9b71c328b9aed8173373d7c68d145dcdac Mon Sep 17 00:00:00 2001 From: Nathan Hui Date: Wed, 19 Jul 2023 21:51:48 -0700 Subject: [PATCH] chore: Fixing logging output --- autostart/rctrun.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/autostart/rctrun.py b/autostart/rctrun.py index 6bc7629..a016f6a 100644 --- a/autostart/rctrun.py +++ b/autostart/rctrun.py @@ -156,8 +156,11 @@ def init_threads(self): self.doRun = True self.init_sdr_thread.join() + self.__log.debug('SDR init thread joined') self.init_output_thread.join() + self.__log.debug('Output init thread joined') self.init_gps_thread.join() + self.__log.debug('GPS init thread joined') self.UIB_Singleton.system_state = RCT_STATES.wait_start.value self.flags[self.Flags.INIT_COMPLETE].set()