diff --git a/changelog.txt b/changelog.txt index a4add7e..7bf2f3e 100755 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,6 @@ +2025.07.18: +. Changed Waitress' logging level to ERROR. + 2025.07.11: . Default "check_slippage" value now False. . The default order size is now enforced per exchange. diff --git a/main.py b/main.py index 25db4cf..8b5f8e0 100644 --- a/main.py +++ b/main.py @@ -16,7 +16,7 @@ import exchange_wrapper import trader -version = "2025.07.11" +version = "2025.07.18" ''' Color definitions. If you want to change them, check the reference at https://en.wikipedia.org/wiki/ANSI_escape_code#Colors @@ -2448,7 +2448,7 @@ if __name__=="__main__": #Waitress logging waitress_logger = logging.getLogger('waitress') - waitress_logger.setLevel(logging.INFO) + waitress_logger.setLevel(logging.ERROR) #Threads to run: main loop and flask api main_threads = [Thread(target=main_loop,args=()),Thread(target=run_API,args=())]