turn off logger for now

This commit is contained in:
Stefano Ariestasia
2023-09-13 14:53:33 +09:00
parent 25ae25248c
commit 7655bf6ea7
@@ -63,7 +63,7 @@ class FullTradesFilter(IPairList):
trades = Trade.get_trades(Trade.is_open.is_(True)).all() trades = Trade.get_trades(Trade.is_open.is_(True)).all()
except AttributeError: except AttributeError:
# Performancefilter does not work in backtesting. # Performancefilter does not work in backtesting.
self.log_once("PerformanceFilter is not available in this mode.", logger.warning) self.log_once("FullTradesFilter is not available in this mode.", logger.warning)
return pairlist return pairlist
# Skip performance-based sorting if no performance data is available # Skip performance-based sorting if no performance data is available
@@ -73,10 +73,10 @@ class FullTradesFilter(IPairList):
max_trades = self._config['max_open_trades'] max_trades = self._config['max_open_trades']
self.log_once(f"Max open trades: {max_trades}, current open trades: {num_open}", logger.info) # self.log_once(f"Max open trades: {max_trades}, current open trades: {num_open}", logger.info)
if (num_open >= max_trades): if (num_open >= max_trades):
logger.info('Slots full. Emptying pairlist!!') # logger.info('Slots full. Emptying pairlist!!')
return []; return [];
return pairlist return pairlist