From a49b0a922a8123a018176724e13edcbc0c0158e8 Mon Sep 17 00:00:00 2001 From: Axel-CH Date: Thu, 28 Nov 2024 22:17:53 -0400 Subject: [PATCH] enhance check_and_call_adjust_trade_position logging --- freqtrade/freqtradebot.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index b1c4dc5c7..ace21fe8c 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -807,7 +807,10 @@ class FreqtradeBot(LoggingMixin): ) if amount == 0.0: - logger.info("Amount to exit is 0.0 due to exchange limits - not exiting.") + logger.info( + f"Wanted to exit of {stake_amount} amount, " + "but exit amount is now 0.0 due to exchange limits - not exiting." + ) return remaining = (trade.amount - amount) * current_exit_rate