(b *testing.B)
| 73 | } |
| 74 | |
| 75 | func BenchmarkBoolField(b *testing.B) { |
| 76 | withBenchedLogger(b, func(log *Logger) { |
| 77 | log.Info("Boolean.", Bool("foo", true)) |
| 78 | }) |
| 79 | } |
| 80 | |
| 81 | func BenchmarkByteStringField(b *testing.B) { |
| 82 | val := []byte("bar") |
nothing calls this directly
no test coverage detected