(b *testing.B)
| 98 | } |
| 99 | |
| 100 | func BenchmarkInt64Field(b *testing.B) { |
| 101 | withBenchedLogger(b, func(log *Logger) { |
| 102 | log.Info("64-bit integer.", Int64("foo", 42)) |
| 103 | }) |
| 104 | } |
| 105 | |
| 106 | func BenchmarkStringField(b *testing.B) { |
| 107 | withBenchedLogger(b, func(log *Logger) { |
nothing calls this directly
no test coverage detected