diff --git a/lbrynet/extras/daemon/exchange_rate_manager.py b/lbrynet/extras/daemon/exchange_rate_manager.py index 30121729a..b304f265f 100644 --- a/lbrynet/extras/daemon/exchange_rate_manager.py +++ b/lbrynet/extras/daemon/exchange_rate_manager.py @@ -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