Skip to content

Commit

Permalink
fix: (discovery) logged configuration (attempt 2) (#1981)
Browse files Browse the repository at this point in the history
  • Loading branch information
iurii-ssv authored Jan 24, 2025
1 parent 49b18ec commit 9ad77c8
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion network/discovery/dv5_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,12 @@ func newDiscV5Service(pctx context.Context, logger *zap.Logger, discOpts *Option
publishLock: make(chan struct{}, 1),
}

logger.Debug("configuring discv5 discovery", zap.Any("discOpts", discOpts))
logger.Debug(
"configuring discv5 discovery",
zap.Any("discV5Opts", discOpts.DiscV5Opts),
zap.Any("hostAddress", discOpts.HostAddress),
zap.Any("hostDNS", discOpts.HostDNS),
)
if err := dvs.initDiscV5Listener(logger, discOpts); err != nil {
return nil, err
}
Expand Down

0 comments on commit 9ad77c8

Please sign in to comment.