From dfe698209950035cf4ac5317e8077e4154cbe0bd Mon Sep 17 00:00:00 2001 From: Axel-CH Date: Mon, 3 Mar 2025 15:18:04 -0400 Subject: [PATCH] chore: change log level of get_valid_price log from warning to info --- freqtrade/freqtradebot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/freqtradebot.py b/freqtrade/freqtradebot.py index cfe789af7..4af00ebaa 100644 --- a/freqtrade/freqtradebot.py +++ b/freqtrade/freqtradebot.py @@ -2593,7 +2593,7 @@ class FreqtradeBot(LoggingMixin): # Log a warning if the custom price was adjusted by clamping. if final_price != valid_custom_price: - logger.warning( + logger.info( f"Custom price adjusted from {valid_custom_price} to {final_price} based on " "custom_price_max_distance_ratio of {cust_p_max_dist_r}." )