From b0074cbf8bee805071851ebffe84cd2a5c357c2a Mon Sep 17 00:00:00 2001 From: Joe Schr <8218910+TheJoeSchr@users.noreply.github.com> Date: Thu, 11 May 2023 16:42:33 +0200 Subject: [PATCH] Converter: log exception instead of error --- freqtrade/data/converter/converter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/freqtrade/data/converter/converter.py b/freqtrade/data/converter/converter.py index 9314824da..126dbe76b 100644 --- a/freqtrade/data/converter/converter.py +++ b/freqtrade/data/converter/converter.py @@ -180,7 +180,7 @@ def populate_dataframe_with_trades(config: Config, dataframe: DataFrame, trades: f"trades.singleton_iterate in {time.time() - start_time} seconds") except Exception as e: - logger.error(f"Error populating dataframe with trades: {e}") + logger.exception("Error populating dataframe with trades:", e) return dataframe