Skip to content

Commit 329eb77

Browse files
Log graph endpoint in startup checks
1 parent b35df1e commit 329eb77

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/commands/start/startup_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ async def startup_checks() -> None:
6666
await wait_execution_catch_up_consensus(chain_state)
6767

6868
if settings.claim_fee_splitter:
69-
logger.info('Checking graph nodes...')
69+
logger.info('Checking graph nodes %s...', settings.graph_endpoint)
7070
await wait_for_graph_node_sync_to_chain_head()
7171

7272
logger.info('Checking oracles config...')

src/meta_vault/startup_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ async def startup_checks(meta_vault_addresses: list[ChecksumAddress]) -> None:
2929
logger.info('Checking execution nodes network...')
3030
await check_execution_nodes_network()
3131

32-
logger.info('Checking graph nodes...')
32+
logger.info('Checking graph nodes %s...', settings.graph_endpoint)
3333
await wait_for_graph_node_sync_to_chain_head()
3434

3535
logger.info('Checking meta vault addresses %s...', ', '.join(meta_vault_addresses))

0 commit comments

Comments
 (0)