(b *testing.B, name string, logKey LogKey, logKeys *LogKeyMask)
| 205 | } |
| 206 | |
| 207 | func benchmarkLogKeyEnabled(b *testing.B, name string, logKey LogKey, logKeys *LogKeyMask) { |
| 208 | b.Run(name, func(bn *testing.B) { |
| 209 | for i := 0; i < bn.N; i++ { |
| 210 | logKeys.Enabled(logKey) |
| 211 | } |
| 212 | }) |
| 213 | } |
no test coverage detected