Skip to content

Commit 2f86193

Browse files
committed
refactor(logging): change distributed mode failure log to use Error level
1 parent d0ad087 commit 2f86193

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/serve.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ func serve() func(cmd *cobra.Command, args []string) error {
191191

192192
gossipEngine, err = gossip.InitMemberList(cfg.Distributed.Node, cfg.Distributed.Protocol)
193193
if err != nil {
194-
slog.Info("🔗 failed to start distributed mode: %s ", err.Error())
194+
slog.Error(err.Error())
195195
return err
196196
}
197197

0 commit comments

Comments
 (0)