mirror of
https://github.com/freqtrade/freqtrade.git
synced 2025-11-29 08:33:07 +00:00
chore: improve log wording
This commit is contained in:
@@ -2600,10 +2600,15 @@ class Exchange:
|
|||||||
CandleType.FUTURES,
|
CandleType.FUTURES,
|
||||||
)
|
)
|
||||||
if invalid_timeframe or invalid_funding:
|
if invalid_timeframe or invalid_funding:
|
||||||
|
timeframes_ = (
|
||||||
|
", ".join(self.timeframes)
|
||||||
|
if candle_type != CandleType.FUNDING_RATE
|
||||||
|
else self.get_option("funding_fee_timeframe")
|
||||||
|
)
|
||||||
logger.warning(
|
logger.warning(
|
||||||
f"Cannot download ({pair}, {timeframe}, {candle_type}) combination as this "
|
f"Cannot download ({pair}, {timeframe}, {candle_type}) combination as this "
|
||||||
f"timeframe is not available on {self.name}. Available timeframes are "
|
f"timeframe is not available on {self.name}. Available timeframes are "
|
||||||
f"{', '.join(self.timeframes)}."
|
f"{timeframes_}."
|
||||||
)
|
)
|
||||||
continue
|
continue
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user