logging
This commit is contained in:
parent
c9d54bb049
commit
6732b302bb
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ class ExchangeRateManager:
|
||||||
|
|
||||||
def convert_currency(self, from_currency, to_currency, amount):
|
def convert_currency(self, from_currency, to_currency, amount):
|
||||||
rates = [market.rate for market in self.market_feeds]
|
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:
|
if from_currency == to_currency:
|
||||||
return amount
|
return amount
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue