We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e815d8 commit 8f7b1a4Copy full SHA for 8f7b1a4
spans/driver.go
@@ -81,7 +81,9 @@ func driver(adapter Adapter) trace.Driver { //nolint:gocyclo,funlen
81
82
if id, valid := start.ID(); valid {
83
if traceID, valid := start.TraceID(); valid {
84
- *info.Context = meta.WithTraceParent(*info.Context, traceparent(traceID, id))
+ traceparent := traceparent(traceID, id)
85
+ start.Log("traceparent", kv.String("traceparent", traceparent))
86
+ *info.Context = meta.WithTraceParent(*info.Context, traceparent)
87
}
88
89
0 commit comments