Skip to content

Commit

Permalink
Merge pull request #15 from krakend/fix_err_log_format
Browse files Browse the repository at this point in the history
fix log format
  • Loading branch information
kpacha authored Apr 25, 2024
2 parents 20e4cf8 + 5f928c7 commit b6787b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion otel.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func RegisterGlobalInstance(ctx context.Context, l logging.Logger,
// TODO: we might want to "throtle" the error reporting
// when we have repeated messagese when a OTLP backend is
// down.
l.Error("[SERVICE OpenTelemetry] " + e.Error())
l.Error("[SERVICE: OpenTelemetry] " + e.Error())
}))

globalStateCfg := &state.OTELStateConfig{
Expand Down

0 comments on commit b6787b7

Please sign in to comment.