(b *testing.B)
| 141 | } |
| 142 | |
| 143 | func BenchmarkLogFixed(b *testing.B) { |
| 144 | backend := SetBackend(NewLogBackend(ioutil.Discard, "", 0)) |
| 145 | backend.SetLevel(DEBUG, "") |
| 146 | |
| 147 | RunLogBenchmarkFixedString(b) |
| 148 | } |
| 149 | |
| 150 | func BenchmarkLogFixedIgnored(b *testing.B) { |
| 151 | backend := SetBackend(NewLogBackend(ioutil.Discard, "", 0)) |
nothing calls this directly
no test coverage detected