We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c641070 commit 1240af9Copy full SHA for 1240af9
cmd/server/entrypoint.go
@@ -2,6 +2,7 @@ package main
2
3
import (
4
"context"
5
+ "encoding/json"
6
"fmt"
7
8
"github.com/Layr-Labs/eigenda-proxy/flags"
@@ -25,7 +26,11 @@ func StartProxySvr(cliCtx *cli.Context) error {
25
26
ctx, ctxCancel := context.WithCancel(cliCtx.Context)
27
defer ctxCancel()
28
- log.Info("Initializing EigenDA proxy server...")
29
+ configJSON, err := json.MarshalIndent(cfg, "", " ")
30
+ if err != nil {
31
+ return fmt.Errorf("failed to marshal config: %w", err)
32
+ }
33
+ log.Info(fmt.Sprintf("Initializing EigenDA proxy server with config: %v", string(configJSON)))
34
35
daRouter, err := server.LoadStoreRouter(ctx, cfg, log)
36
if err != nil {
0 commit comments