(b *testing.B)
| 92 | } |
| 93 | |
| 94 | func BenchmarkIntField(b *testing.B) { |
| 95 | withBenchedLogger(b, func(log *Logger) { |
| 96 | log.Info("Integer.", Int("foo", 42)) |
| 97 | }) |
| 98 | } |
| 99 | |
| 100 | func BenchmarkInt64Field(b *testing.B) { |
| 101 | withBenchedLogger(b, func(log *Logger) { |
nothing calls this directly
no test coverage detected