From f4c004347e45bcad816ffcb398baa157f96ddcbb Mon Sep 17 00:00:00 2001 From: Matthias Date: Mon, 30 Dec 2024 13:47:36 +0100 Subject: [PATCH] chore: backtesting should avoid unnecessary logging --- freqtrade/optimize/backtesting.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/freqtrade/optimize/backtesting.py b/freqtrade/optimize/backtesting.py index 6489aac4b..47b41d6ca 100644 --- a/freqtrade/optimize/backtesting.py +++ b/freqtrade/optimize/backtesting.py @@ -1249,10 +1249,10 @@ class Backtesting: oo = trade.select_order(side, True) if oo: if (price == oo.price) and (side == oo.side) and (amount == oo.amount): - logger.info( - f"A similar open order was found for {trade.pair}. " - f"Keeping existing {trade.exit_side} order. {price=}, {amount=}" - ) + # logger.info( + # f"A similar open order was found for {trade.pair}. " + # f"Keeping existing {trade.exit_side} order. {price=}, {amount=}" + # ) return True self.cancel_open_orders(trade, current_time)