(b []byte)
| 272 | } |
| 273 | |
| 274 | func (r *responseBodyWriter) Write(b []byte) (int, error) { |
| 275 | r.sanitizeResolvedHeader() |
| 276 | if r.captureBody { |
| 277 | r.body.Write(b) |
| 278 | } |
| 279 | return r.ResponseWriter.Write(b) |
| 280 | } |
| 281 | |
| 282 | func loadLogInfo(path string) string { |
| 283 | path = replaceStr(path, "/api/v2", "/core", "/xpack", "/enterprise") |
nothing calls this directly
no test coverage detected