diff --git a/mesh_bot.py b/mesh_bot.py index 212fcae..624820b 100755 --- a/mesh_bot.py +++ b/mesh_bot.py @@ -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() diff --git a/pong_bot.py b/pong_bot.py index f74c7ae..40a1b68 100755 --- a/pong_bot.py +++ b/pong_bot.py @@ -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()