This commit is contained in:
algizn97
2025-10-03 14:19:18 +05:00
parent 4adbd70948
commit 1508629727
15 changed files with 412 additions and 210 deletions

View File

@@ -110,6 +110,11 @@ LOGGING_CONFIG = {
"level": "DEBUG",
"propagate": False,
},
"stop_trading": {
"handlers": ["console", "timed_rotating_file", "error_file"],
"level": "DEBUG",
"propagate": False,
},
"changing_the_symbol": {
"handlers": ["console", "timed_rotating_file", "error_file"],
"level": "DEBUG",
@@ -135,5 +140,10 @@ LOGGING_CONFIG = {
"level": "DEBUG",
"propagate": False,
},
"tasks": {
"handlers": ["console", "timed_rotating_file", "error_file"],
"level": "DEBUG",
"propagate": False,
},
},
}