pub unsafe extern "C" fn es_unmute_path(
client: *mut es_client_t,
path: *const c_char,
type_: es_mute_path_type_t,
) -> es_return_tAvailable on macOS and crate feature
macos_12_0_0 only.Expand description
Unmute a path for all event types.
client: The es_client_t for which the path will be unmuted.path: The path to unmute.type: Describes the type of thepathparameter, either a prefix path or literal path.
Muting and unmuting operations logically work on a set of (path_type, path, es_event_type_t) tuples Subtracting an element from the set that is not present has no
effect For example if (literal, /foo/bar/, *) is muted Then (prefix, /foo, *) is unmuted
the mute set is still: (literal, /foo/bar, *). Prefixes only apply to mute evaluation not
to modifications of the mute set.