Macro fuchsia_trace::alert

source ·
macro_rules! alert {
    ($category:expr, $name:expr) => { ... };
}
Expand description

Convenience macro for the alert function.

Example:

alert!(c"foo", c"bar");

is equivalent to

alert(c"foo", c"bar");