less verbose exchange rate error
This commit is contained in:
parent
0cd497d602
commit
930e965d9c
2 changed files with 4 additions and 4 deletions
|
@ -13,7 +13,7 @@ at anytime.
|
||||||
*
|
*
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
*
|
* Fixed unnecessarily verbose exchange rate error (https://github.com/lbryio/lbry/issues/984)
|
||||||
*
|
*
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|
|
@ -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):
|
||||||
|
|
Loading…
Reference in a new issue