correctLogLevel

This commit is contained in:
SpudGunMan
2025-10-06 14:25:13 -07:00
parent 42e07d44e6
commit 4ba60ed276
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1681,7 +1681,7 @@ async def main():
if radio_detection_enabled:
tasks.append(asyncio.create_task(handleSignalWatcher(), name="hamlib"))
logger.info(f"System: Starting {len(tasks)} async tasks")
logger.debug(f"System: Starting {len(tasks)} async tasks")
# Wait for all tasks with proper exception handling
results = await asyncio.gather(*tasks, return_exceptions=True)
@@ -1695,7 +1695,7 @@ async def main():
logger.error(f"Main loop error: {e}")
finally:
# Cleanup tasks
logger.info("System: Cleaning up async tasks")
logger.debug("System: Cleaning up async tasks")
for task in tasks:
if not task.done():
task.cancel()
+2 -2
View File
@@ -481,7 +481,7 @@ async def main():
if file_monitor_enabled:
tasks.append(asyncio.create_task(handleFileWatcher(), name="file_monitor"))
logger.info(f"System: Starting {len(tasks)} async tasks")
logger.debug(f"System: Starting {len(tasks)} async tasks")
# Wait for all tasks with proper exception handling
results = await asyncio.gather(*tasks, return_exceptions=True)
@@ -495,7 +495,7 @@ async def main():
logger.error(f"Main loop error: {e}")
finally:
# Cleanup tasks
logger.info("System: Cleaning up async tasks")
logger.debug("System: Cleaning up async tasks")
for task in tasks:
if not task.done():
task.cancel()