File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -92,9 +92,11 @@ def _set_log_levels(
9292
9393 # Set default levels for third party libraries
9494 third_party_loggers = {
95- "freqtrade" : logging .INFO if verbosity <= 1 else logging .DEBUG ,
95+ "freqtrade" : logging .INFO if verbosity < 1 else logging .DEBUG ,
96+ "freqtrade.exchange.exchange_ws" : logging .INFO if verbosity <= 1 else logging .DEBUG ,
9697 "requests" : logging .INFO if verbosity <= 1 else logging .DEBUG ,
9798 "urllib3" : logging .INFO if verbosity <= 1 else logging .DEBUG ,
99+ "asyncio" : logging .INFO if verbosity <= 1 else logging .DEBUG ,
98100 "httpcore" : logging .INFO if verbosity <= 1 else logging .DEBUG ,
99101 "ccxt.base.exchange" : logging .INFO if verbosity <= 2 else logging .DEBUG ,
100102 "telegram" : logging .INFO ,
You can’t perform that action at this time.
0 commit comments