From 18ff158b1d46df79c3247623416dd9069007fe27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20S=C3=A1nchez?= Date: Fri, 18 Jul 2025 09:51:53 -0300 Subject: [PATCH] 2025.07.18 --- changelog.txt | 3 +++ main.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) 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=())]