(b *testing.B)
| 105 | } |
| 106 | |
| 107 | func BenchmarkLogLogBackend(b *testing.B) { |
| 108 | backend := SetBackend(NewLogBackend(ioutil.Discard, "", 0)) |
| 109 | backend.SetLevel(DEBUG, "") |
| 110 | RunLogBenchmark(b) |
| 111 | } |
| 112 | |
| 113 | func BenchmarkLogLogBackendColor(b *testing.B) { |
| 114 | colorizer := NewLogBackend(ioutil.Discard, "", 0) |
nothing calls this directly
no test coverage detected