StrsV adds the field key with vals as a []string to the *Event context. This is a variadic version that accepts a list of individual strings.
(key string, vals ...string)
| 335 | // |
| 336 | // This is a variadic version that accepts a list of individual strings. |
| 337 | func (e *Event) StrsV(key string, vals ...string) *Event { |
| 338 | return e.Strs(key, vals) |
| 339 | } |
| 340 | |
| 341 | // Stringer adds the field key and a val to the *Event context. |
| 342 | // If val is not nil, it is added by calling val.String(). |