Skip to content

Commit

Permalink
fix(lint): fix bad log line
Browse files Browse the repository at this point in the history
Signed-off-by: Dave Henderson <dhenderson@gmail.com>
  • Loading branch information
hairyhenderson committed May 29, 2024
1 parent cc51b1b commit 06efcc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/fscli/tracing.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func initTracing(ctx context.Context) (func(context.Context) error, error) {
otel.SetTextMapPropagator(autoprop.NewTextMapPropagator())

otel.SetErrorHandler(otelErrHandler(func(err error) {
slog.Error("OTel error", err)
slog.Error("OTel error", slog.Any("err", err))
}))

shutdown := func(ctx context.Context) error {
Expand Down

0 comments on commit 06efcc3

Please sign in to comment.