`binance`: add startup caching info log msg

rekt_pps
Tyler Goodlet 2023-04-10 17:22:26 -04:00
parent abbba1fa6e
commit e524c6fe4f
1 changed files with 1 additions and 0 deletions

View File

@ -332,6 +332,7 @@ class Client:
@acm @acm
async def get_client() -> Client: async def get_client() -> Client:
client = Client() client = Client()
log.info(f'Caching exchange infos..')
await client.exch_info() await client.exch_info()
yield client yield client