(b *testing.B)
| 160 | } |
| 161 | |
| 162 | func BenchmarkReflectField(b *testing.B) { |
| 163 | withBenchedLogger(b, func(log *Logger) { |
| 164 | log.Info("Reflection-based serialization.", Reflect("user", _jane)) |
| 165 | }) |
| 166 | } |
| 167 | |
| 168 | func BenchmarkAddCallerHook(b *testing.B) { |
| 169 | logger := New( |
nothing calls this directly
no test coverage detected