浏览代码

Fix fatal mono logs not getting logged to disk.

They aborted the application without flushing the log file.

Also there was a typo.
PJB3005 7 年之前
父节点
当前提交
7368a0e0f0
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      modules/mono/mono_gd/gd_mono_log.cpp

+ 3 - 1
modules/mono/mono_gd/gd_mono_log.cpp

@@ -70,7 +70,9 @@ void gdmono_MonoLogCallback(const char *log_domain, const char *log_level, const
 	}
 
 	if (fatal) {
-		ERR_PRINTS("Mono: FALTAL ERROR, ABORTING! Logfile: " + GDMonoLog::get_singleton()->get_log_file_path() + "\n");
+		ERR_PRINTS("Mono: FATAL ERROR, ABORTING! Logfile: " + GDMonoLog::get_singleton()->get_log_file_path() + "\n");
+		// If we were to abort without flushing, the log wouldn't get written.
+		f->flush();
 		abort();
 	}
 }