Macro gdnative_core::godot_error
source · [−]macro_rules! godot_error {
($($args:tt)*) => { ... };
}Expand description
Print an error 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.