| 328 | } |
| 329 | |
| 330 | type fakeLogDest struct { |
| 331 | t testing.TB |
| 332 | logs []*proto.Log |
| 333 | } |
| 334 | |
| 335 | func (d *fakeLogDest) BatchCreateLogs(ctx context.Context, request *proto.BatchCreateLogsRequest) (*proto.BatchCreateLogsResponse, error) { |
| 336 | d.t.Logf("got %d logs, ", len(request.Logs)) |
nothing calls this directly
no outgoing calls
no test coverage detected