(b *testing.B)
| 86 | } |
| 87 | |
| 88 | func BenchmarkFloat64Field(b *testing.B) { |
| 89 | withBenchedLogger(b, func(log *Logger) { |
| 90 | log.Info("Floating point.", Float64("foo", 3.14)) |
| 91 | }) |
| 92 | } |
| 93 | |
| 94 | func BenchmarkIntField(b *testing.B) { |
| 95 | withBenchedLogger(b, func(log *Logger) { |
nothing calls this directly
no test coverage detected