Reduce verbosity of get_ticker_history
This commit is contained in:
parent
72a2c37769
commit
8b098859f4
@ -297,9 +297,10 @@ def get_ticker_history(pair: str, tick_interval: str, since_ms: Optional[int] =
|
|||||||
if not data_part:
|
if not data_part:
|
||||||
break
|
break
|
||||||
|
|
||||||
logger.info('Downloaded data for time range [%s, %s]',
|
logger.debug('Downloaded data for %s time range [%s, %s]',
|
||||||
arrow.get(data_part[0][0] / 1000).format(),
|
pair,
|
||||||
arrow.get(data_part[-1][0] / 1000).format())
|
arrow.get(data_part[0][0] / 1000).format(),
|
||||||
|
arrow.get(data_part[-1][0] / 1000).format())
|
||||||
|
|
||||||
data.extend(data_part)
|
data.extend(data_part)
|
||||||
since_ms = data[-1][0] + 1
|
since_ms = data[-1][0] + 1
|
||||||
|
Loading…
Reference in New Issue
Block a user