less verbose exchange rate error

This commit is contained in:
Jack Robison 2017-11-10 10:34:36 -05:00
parent 0cd497d602
commit 930e965d9c
No known key found for this signature in database
GPG key ID: 284699E7404E3CFF
2 changed files with 4 additions and 4 deletions

View file

@ -13,7 +13,7 @@ at anytime.
* *
### Fixed ### Fixed
* * Fixed unnecessarily verbose exchange rate error (https://github.com/lbryio/lbry/issues/984)
* *
### Deprecated ### Deprecated

View file

@ -69,9 +69,9 @@ class MarketFeed(object):
self._online = True self._online = True
def _on_error(self, err): def _on_error(self, err):
log.warning( log.warning("There was a problem updating %s exchange rate information from %s: %s",
"There was a problem updating %s exchange rate information from %s: %s", self.market, self.name)
self.market, self.name, err) log.debug("Exchange rate error (%s from %s): %s", self.market, self.name, err)
self._online = False self._online = False
def _update_price(self): def _update_price(self):