log "Found no sell signal for whitelisted ..." changed (#1378)

* sell log enriched and put modify on debug
This commit is contained in:
Misagh 2018-12-01 10:01:11 +01:00 committed by Matthias
parent e31963f6e1
commit 24f573f3b0

View File

@ -629,7 +629,7 @@ class FreqtradeBot(object):
if self.check_sell(trade, sell_rate, buy, sell):
return True
logger.info('Found no sell signals for whitelisted currencies. Trying again..')
logger.debug('Found no sell signal for %s.', trade)
return False
def handle_stoploss_on_exchange(self, trade: Trade) -> bool: