(b *testing.B)
| 148 | } |
| 149 | |
| 150 | func BenchmarkLogFixedIgnored(b *testing.B) { |
| 151 | backend := SetBackend(NewLogBackend(ioutil.Discard, "", 0)) |
| 152 | backend.SetLevel(INFO, "") |
| 153 | RunLogBenchmarkFixedString(b) |
| 154 | } |
| 155 | |
| 156 | func RunLogBenchmarkFixedString(b *testing.B) { |
| 157 | log := MustGetLogger("test") |
nothing calls this directly
no test coverage detected