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()