Skip to content

Commit 690a1a6

Browse files
authored
dispute-mon: log RPC URLs on startup (#17986)
1 parent 9f37600 commit 690a1a6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

op-dispute-mon/cmd/main.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ func run(ctx context.Context, args []string, action ConfiguredLifecycle) error {
5656
if err != nil {
5757
return nil, err
5858
}
59+
logger.Info("RPC endpoints",
60+
"l1", cfg.L1EthRpc,
61+
"rollup", cfg.RollupRpcs,
62+
"supervisor", cfg.SupervisorRpcs,
63+
)
5964
return action(ctx.Context, logger, cfg)
6065
})
6166
return app.RunContext(ctx, args)

0 commit comments

Comments
 (0)