[Base] Log to stdout by default

This commit is contained in:
Satori 2020-09-07 14:56:50 +01:00 committed by Rick Gibbed
parent 446837edb1
commit b74eac36c7
1 changed files with 1 additions and 1 deletions

View File

@ -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");