improve log message

This commit is contained in:
xmatthias 2018-06-06 20:30:42 +02:00
parent a901f21bcd
commit 4a17671f45
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ def get_ticker(pair: str, refresh: Optional[bool] = True) -> dict:
except ccxt.BaseError as e:
raise OperationalException(e)
else:
logger.info("returning cached data for %s", pair)
logger.info("returning cached ticker-data for %s", pair)
return _CACHED_TICKER[pair]