Remove some debug logging
This commit is contained in:
parent
bd4b3a8567
commit
27634ef26a
|
@ -33,11 +33,7 @@ async def aggregator_job():
|
||||||
for account in accounts:
|
for account in accounts:
|
||||||
account_id = account["account_id"]
|
account_id = account["account_id"]
|
||||||
requisition_id = account["requisition_id"]
|
requisition_id = account["requisition_id"]
|
||||||
log.debug(f"Polling currency {account['currency']}")
|
|
||||||
if account["currency"] not in open_trade_currencies:
|
if account["currency"] not in open_trade_currencies:
|
||||||
log.debug(
|
|
||||||
f"Skipping {account_id}, not in {open_trade_currencies}"
|
|
||||||
)
|
|
||||||
continue # Next account
|
continue # Next account
|
||||||
# Avoid hammering the API with new access token requests
|
# Avoid hammering the API with new access token requests
|
||||||
if instance is None:
|
if instance is None:
|
||||||
|
|
Loading…
Reference in New Issue