Include Pair name in exception log message

This commit is contained in:
Matthias
2019-12-31 07:11:09 +01:00
parent 9d518b9d29
commit 26a2395aeb
2 changed files with 3 additions and 3 deletions

View File

@@ -485,7 +485,7 @@ class FreqtradeBot:
try:
trades_created += self.create_trade(pair)
except DependencyException as exception:
logger.warning('Unable to create trade: %s', exception)
logger.warning('Unable to create trade for %s: %s', pair, exception)
if not trades_created:
logger.debug("Found no buy signals for whitelisted currencies. "