AppendFlags adds the flags parameter to this event.
(name string, value uint32, flags ParamFlags)
| 336 | |
| 337 | // AppendFlags adds the flags parameter to this event. |
| 338 | func (e *Event) AppendFlags(name string, value uint32, flags ParamFlags) { |
| 339 | e.AppendParam(name, params.Flags, value, WithFlags(flags)) |
| 340 | } |
| 341 | |
| 342 | // GetParamAsString returns the specified parameter value as string. |
| 343 | // Parameter values are resolved according to their types. For instance, |
no test coverage detected