| 133 | } |
| 134 | |
| 135 | void trace_verbatim(struct trace_key *key, const void *buf, unsigned len) |
| 136 | { |
| 137 | if (!trace_want(key)) |
| 138 | return; |
| 139 | trace_write(key, buf, len); |
| 140 | } |
| 141 | |
| 142 | static void print_trace_line(struct trace_key *key, struct strbuf *buf) |
| 143 | { |
no test coverage detected