(ctx context.Context)
| 96 | } |
| 97 | |
| 98 | func prefix(ctx context.Context) []byte { |
| 99 | b, _ := ctx.Value(prefixKey).([]byte) |
| 100 | return b |
| 101 | } |
| 102 | |
| 103 | // Printkv prints a structured log entry to stdout. Log fields are |
| 104 | // specified as a variadic sequence of alternating keys and values. |