WithClientTrace wraps context with a httptrace.ClientTrace for debugging.
(ctx context.Context)
| 118 | |
| 119 | // WithClientTrace wraps context with a httptrace.ClientTrace for debugging. |
| 120 | func WithClientTrace(ctx context.Context) context.Context { |
| 121 | return httptrace.WithClientTrace(ctx, NewDebugClientTrace(ctx)) |
| 122 | } |
no test coverage detected
searching dependent graphs…