Macro fuchsia_trace::alert

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

Convenience macro for the alert function.

Example:

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

is equivalent to

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