Skip to content

Commit

Permalink
style: Improve code formatting for log message
Browse files Browse the repository at this point in the history
  • Loading branch information
samcm committed Nov 24, 2024
1 parent 1c20c87 commit 603cc67
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkg/exporter/exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ func (e *exporter) bootstrapConsensusClients(_ context.Context) error {
if e.config.Consensus.EventStream.Enabled != nil &&
*e.config.Consensus.EventStream.Enabled &&
len(e.config.Consensus.EventStream.Topics) > 0 {
e.log.WithField("topics", strings.Join(e.config.Consensus.EventStream.Topics, ", ")).Info("Enabling consensus event stream with topics...")
e.log.WithField(
"topics", strings.Join(e.config.Consensus.EventStream.Topics, ", "),
).Info("Enabling beacon event stream with topics...")

opts.BeaconSubscription.Enabled = true
opts.BeaconSubscription.Topics = e.config.Consensus.EventStream.Topics
Expand Down

0 comments on commit 603cc67

Please sign in to comment.