StringersV adds the field key with vals to the *Event context. If a val is not nil, it is added by calling val.String(). If a val is nil, it is encoded as null without calling String(). This is a variadic version that accepts a list of individual fmt.Stringer values.
(key string, vals ...fmt.Stringer)
| 369 | // This is a variadic version that accepts a list of individual |
| 370 | // fmt.Stringer values. |
| 371 | func (e *Event) StringersV(key string, vals ...fmt.Stringer) *Event { |
| 372 | return e.Stringers(key, vals) |
| 373 | } |
| 374 | |
| 375 | // Bytes adds the field key with val as a string to the *Event context. |
| 376 | // |