Maybe this is the fix ?

This commit is contained in:
2025-01-31 19:53:15 +01:00
parent 625579ebbb
commit 3964336370
+1 -1
View File
@@ -85,7 +85,7 @@ if __name__ == "__main__":
logger.info("Starting discord bot")
threads = []
logger.info("Starting discord bot: Creating threads")
threads.append(threading.Thread(target=client.run, args=(TOKEN,)))
threads.append(threading.Thread(target=client.run, args=(TOKEN,),kwargs={"log_handler":None}))
threads.append(threading.Thread(target=comm_subroutine))
logger.info("Starting discord bot: Starting threads")
WRK_CNT = 0