Disable output from plugins in backtesting

This commit is contained in:
Matthias 2020-11-19 20:05:56 +01:00
parent 9f34aebdaa
commit 32189d27c8

View File

@ -25,6 +25,7 @@ from freqtrade.persistence import PairLocks, Trade
from freqtrade.plugins.protectionmanager import ProtectionManager from freqtrade.plugins.protectionmanager import ProtectionManager
from freqtrade.resolvers import ExchangeResolver, StrategyResolver from freqtrade.resolvers import ExchangeResolver, StrategyResolver
from freqtrade.strategy.interface import IStrategy, SellCheckTuple, SellType from freqtrade.strategy.interface import IStrategy, SellCheckTuple, SellType
from freqtrade.mixins import LoggingMixin
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
@ -68,6 +69,8 @@ class Backtesting:
""" """
def __init__(self, config: Dict[str, Any]) -> None: def __init__(self, config: Dict[str, Any]) -> None:
LoggingMixin.show_output = False
self.config = config self.config = config
# Reset keys for backtesting # Reset keys for backtesting