From b74eac36c70695248a31e7cfd185b8df9cff3463 Mon Sep 17 00:00:00 2001 From: Satori Date: Mon, 7 Sep 2020 14:56:50 +0100 Subject: [PATCH] [Base] Log to stdout by default --- src/xenia/base/logging.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/base/logging.cc b/src/xenia/base/logging.cc index ffb9d049b..11f242ea7 100644 --- a/src/xenia/base/logging.cc +++ b/src/xenia/base/logging.cc @@ -37,7 +37,7 @@ #include "third_party/fmt/include/fmt/format.h" DEFINE_path(log_file, "", "Logs are written to the given file", "Logging"); -DEFINE_bool(log_to_stdout, false, "Write log output to stdout", "Logging"); +DEFINE_bool(log_to_stdout, true, "Write log output to stdout", "Logging"); DEFINE_bool(log_to_debugprint, false, "Dump the log to DebugPrint.", "Logging"); DEFINE_bool(flush_log, true, "Flush log file after each log line batch.", "Logging");