summaryrefslogtreecommitdiff
path: root/core/io
diff options
context:
space:
mode:
authorGilles Roudière <gilles.roudiere@gmail.com>2021-02-09 17:34:49 +0100
committerGilles Roudière <gilles.roudiere@gmail.com>2021-02-09 17:34:49 +0100
commit25c4dacb880724a8e5dec88ca922f57215e153ef (patch)
tree7dfa8ed43c0afb09bc29a433d2955a8dad06cee1 /core/io
parentdf9c98e107b19fc50bc5ae9f7ed624d693c0fb32 (diff)
Fixes crash when exiting with --verbose with leaked resources
Diffstat (limited to 'core/io')
-rw-r--r--core/io/logger.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/io/logger.cpp b/core/io/logger.cpp
index da200f5717..bd0285a7a9 100644
--- a/core/io/logger.cpp
+++ b/core/io/logger.cpp
@@ -207,7 +207,7 @@ void RotatedFileLogger::logv(const char *p_format, va_list p_list, bool p_err) {
Memory::free_static(buf);
}
- if (p_err || GLOBAL_GET("application/run/flush_stdout_on_print")) {
+ if (p_err || !ProjectSettings::get_singleton() || GLOBAL_GET("application/run/flush_stdout_on_print")) {
// Don't always flush when printing stdout to avoid performance
// issues when `print()` is spammed in release builds.
file->flush();
@@ -228,7 +228,7 @@ void StdLogger::logv(const char *p_format, va_list p_list, bool p_err) {
vfprintf(stderr, p_format, p_list);
} else {
vprintf(p_format, p_list);
- if (GLOBAL_GET("application/run/flush_stdout_on_print")) {
+ if (!ProjectSettings::get_singleton() || GLOBAL_GET("application/run/flush_stdout_on_print")) {
// Don't always flush when printing stdout to avoid performance
// issues when `print()` is spammed in release builds.
fflush(stdout);