(b *testing.B)
| 79 | } |
| 80 | |
| 81 | func BenchmarkByteStringField(b *testing.B) { |
| 82 | val := []byte("bar") |
| 83 | withBenchedLogger(b, func(log *Logger) { |
| 84 | log.Info("ByteString.", ByteString("foo", val)) |
| 85 | }) |
| 86 | } |
| 87 | |
| 88 | func BenchmarkFloat64Field(b *testing.B) { |
| 89 | withBenchedLogger(b, func(log *Logger) { |
nothing calls this directly
no test coverage detected