Merge pull request #44800 from Calinou/fix-stdout-flush-project-setting
Fix warning spam when using `--help` or `--version` command line argument
This commit is contained in:
commit
f69c116fa7
@ -528,6 +528,11 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
|||||||
ClassDB::register_class<Performance>();
|
ClassDB::register_class<Performance>();
|
||||||
engine->add_singleton(Engine::Singleton("Performance", performance));
|
engine->add_singleton(Engine::Singleton("Performance", performance));
|
||||||
|
|
||||||
|
// Only flush stdout in debug builds by default, as spamming `print()` will
|
||||||
|
// decrease performance if this is enabled.
|
||||||
|
GLOBAL_DEF("application/run/flush_stdout_on_print", false);
|
||||||
|
GLOBAL_DEF("application/run/flush_stdout_on_print.debug", true);
|
||||||
|
|
||||||
GLOBAL_DEF("debug/settings/crash_handler/message",
|
GLOBAL_DEF("debug/settings/crash_handler/message",
|
||||||
String("Please include this when reporting the bug on https://github.com/godotengine/godot/issues"));
|
String("Please include this when reporting the bug on https://github.com/godotengine/godot/issues"));
|
||||||
|
|
||||||
@ -1121,11 +1126,6 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Only flush stdout in debug builds by default, as spamming `print()` will
|
|
||||||
// decrease performance if this is enabled.
|
|
||||||
GLOBAL_DEF("application/run/flush_stdout_on_print", false);
|
|
||||||
GLOBAL_DEF("application/run/flush_stdout_on_print.debug", true);
|
|
||||||
|
|
||||||
GLOBAL_DEF("logging/file_logging/enable_file_logging", false);
|
GLOBAL_DEF("logging/file_logging/enable_file_logging", false);
|
||||||
// Only file logging by default on desktop platforms as logs can't be
|
// Only file logging by default on desktop platforms as logs can't be
|
||||||
// accessed easily on mobile/Web platforms (if at all).
|
// accessed easily on mobile/Web platforms (if at all).
|
||||||
|
Loading…
Reference in New Issue
Block a user