This commit is contained in:
Jack Robison 2019-02-11 15:31:31 -05:00
parent c9d54bb049
commit 6732b302bb
No known key found for this signature in database
GPG key ID: DF25C68FE0239BB2

View file

@ -219,7 +219,7 @@ class ExchangeRateManager:
def convert_currency(self, from_currency, to_currency, amount):
rates = [market.rate for market in self.market_feeds]
log.info("Converting %f %s to %s, rates: %s" % (amount, from_currency, to_currency, rates))
log.debug("Converting %f %s to %s, rates: %s" % (amount, from_currency, to_currency, rates))
if from_currency == to_currency:
return amount