From 0714c1e2f68a3c33927ca11a9e7979132f38f6c1 Mon Sep 17 00:00:00 2001 From: Migatu Date: Tue, 9 Apr 2024 00:56:35 +0200 Subject: [PATCH] testing --- communication_subroutine.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/communication_subroutine.py b/communication_subroutine.py index dc06483..e18f958 100644 --- a/communication_subroutine.py +++ b/communication_subroutine.py @@ -54,8 +54,8 @@ if __name__ == "__main__": logger.setLevel(logging.DEBUG) logger.info("Started") threads = [] - threads.append(threading.Thread(target=waitress_run)) - #threads.append(threading.Thread(target=thread_rescan)) + threads.append(threading.Thread(target=waitress_run, logger=logger)) + #threads.append(threading.Thread(target=flask_debug, logger=logger)) for worker in threads: worker.start()