Skip to content

Commit

Permalink
fix(tracer): provide key and values (#743)
Browse files Browse the repository at this point in the history
  • Loading branch information
luphaz committed Jul 19, 2023
1 parent f149976 commit f9ba591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/v1beta1/disruption_webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func (r *Disruption) ValidateCreate() error {
if err != nil {
logger.Errorw("did not find span context", "err", err)
} else {
logger = logger.With(tracerSink.GetLoggableTraceContext(trace.SpanFromContext(ctx)))
logger = logger.With(tracerSink.GetLoggableTraceContext(trace.SpanFromContext(ctx))...)
}

logger.Infow("validating created disruption", "spec", r.Spec)
Expand Down

0 comments on commit f9ba591

Please sign in to comment.