summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSatori <comfycallum@gmail.com>2020-09-07 14:56:50 +0100
committerRick Gibbed <rick@gibbed.us>2020-11-16 01:52:27 -0600
commitb74eac36c70695248a31e7cfd185b8df9cff3463 (patch)
tree4ff1f00a4956b58698183b7c898fa148a1913edf
parent446837edb169b1d7fc3a5b3c8a6ee2a624771a41 (diff)
[Base] Log to stdout by default
-rw-r--r--src/xenia/base/logging.cc2
1 files changed, 1 insertions, 1 deletions
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");