2025.07.18
This commit is contained in:
parent
5e3ec38ea7
commit
18ff158b1d
|
|
@ -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.
|
||||
|
|
|
|||
4
main.py
4
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=())]
|
||||
|
|
|
|||
Loading…
Reference in New Issue