Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions octobot_trading/exchanges/connectors/ccxt/ccxt_connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ async def _filtered_if_necessary_load_markets(
await client.load_markets(reload=reload)
else:
await client.load_markets(reload=reload)
self.logger.info(
f"Loaded {len(client.markets)} [{self.exchange_manager.exchange_name}] markets"
)
except Exception as err:
# ensure this is not a proxy error, raise dedicated error if it is
if proxy_error := ccxt_client_util.get_proxy_error_if_any(self, err):
Expand Down