You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +00:00
Remove duplicate ERR_PRINTS macro
This commit is contained in:
@@ -366,7 +366,7 @@ void debug_send_unhandled_exception_error(MonoException *p_exc) {
|
||||
if (!ScriptDebugger::get_singleton()) {
|
||||
#ifdef TOOLS_ENABLED
|
||||
if (Engine::get_singleton()->is_editor_hint()) {
|
||||
ERR_PRINTS(GDMonoUtils::get_exception_name_and_message(p_exc));
|
||||
ERR_PRINT(GDMonoUtils::get_exception_name_and_message(p_exc));
|
||||
}
|
||||
#endif
|
||||
return;
|
||||
@@ -444,7 +444,7 @@ void set_pending_exception(MonoException *p_exc) {
|
||||
}
|
||||
|
||||
if (!mono_runtime_set_pending_exception(p_exc, false)) {
|
||||
ERR_PRINTS("Exception thrown from managed code, but it could not be set as pending:");
|
||||
ERR_PRINT("Exception thrown from managed code, but it could not be set as pending:");
|
||||
GDMonoUtils::debug_print_unhandled_exception(p_exc);
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user