forked from LBRYCommunity/lbry-sdk
add name of feed to log.info
This commit is contained in:
parent
433547407e
commit
4411c5c202
1 changed files with 1 additions and 1 deletions
|
@ -71,7 +71,7 @@ class MarketFeed(object):
|
|||
return defer.succeed(from_amount / (1.0 - self.fee))
|
||||
|
||||
def _save_price(self, price):
|
||||
log.debug("Saving price update %f for %s" % (price, self.market))
|
||||
log.debug("Saving price update %f for %s from %s" % (price, self.market, self.name))
|
||||
self.rate = ExchangeRate(self.market, price, int(time.time()))
|
||||
|
||||
def _log_error(self, err):
|
||||
|
|
Loading…
Reference in a new issue