Converter: log exception instead of error

This commit is contained in:
Joe Schr
2023-05-11 16:42:33 +02:00
parent 33af450034
commit b0074cbf8b

View File

@@ -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