Macro gdnative::log::godot_warn
macro_rules! godot_warn { ($($args:tt)*) => { ... }; }
Expand description
Print a warning using the engine’s logging system (visible in the editor).
§Guarantees
It’s guaranteed that the expansion result of this macro may only panic if:
- Any of the arguments for the message panicked in
fmt
. - The formatted message contains the NUL byte (
\0
) anywhere.