Add debug output showing the pair to be converted

part of #9811
This commit is contained in:
Matthias
2024-02-13 17:47:43 +01:00
committed by Joe Schr
parent 0a3b27622d
commit 9a8ae99fc7

View File

@@ -48,6 +48,7 @@ def import_kraken_trades_from_csv(config: Config, convert_to: str):
logger.info(f"Converting pairs: {', '.join(m[0] for m in markets)}.")
for pair, name in markets:
logger.debug(f"Converting pair {pair}, files */{name}.csv")
dfs = []
# Load and combine all csv files for this pair
for f in tradesdir.rglob(f"{name}.csv"):