Improve logmessage when falling back to wallet amount

This commit is contained in:
Matthias 2020-05-03 20:32:45 +02:00
parent 0f50449196
commit 2a4c9bf3d3
1 changed files with 1 additions and 1 deletions

View File

@ -982,7 +982,7 @@ class FreqtradeBot:
if wallet_amount >= amount:
return amount
elif wallet_amount > amount * 0.98:
logger.info(f"{pair} - Falling back to wallet-amount.")
logger.info(f"{pair} - Falling back to wallet-amount {wallet_amount} -> {amount}.")
return wallet_amount
else:
raise DependencyException(