(arr zapcore.ArrayEncoder)
| 377 | type stringArray []string |
| 378 | |
| 379 | func (ss stringArray) MarshalLogArray(arr zapcore.ArrayEncoder) error { |
| 380 | for i := range ss { |
| 381 | arr.AppendString(ss[i]) |
| 382 | } |
| 383 | return nil |
| 384 | } |
| 385 | |
| 386 | type times []time.Time |
| 387 |
nothing calls this directly
no test coverage detected