2025.07.18

This commit is contained in:
Nicolás Sánchez 2025-07-18 09:51:53 -03:00
parent 5e3ec38ea7
commit 18ff158b1d
2 changed files with 5 additions and 2 deletions

View File

@ -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.

View File

@ -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=())]