(b *testing.B)
| 78 | } |
| 79 | |
| 80 | func BenchmarkLogMemoryBackendIgnored(b *testing.B) { |
| 81 | backend := SetBackend(NewMemoryBackend(1024)) |
| 82 | backend.SetLevel(INFO, "") |
| 83 | RunLogBenchmark(b) |
| 84 | } |
| 85 | |
| 86 | func BenchmarkLogMemoryBackend(b *testing.B) { |
| 87 | backend := SetBackend(NewMemoryBackend(1024)) |
nothing calls this directly
no test coverage detected