summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
Diffstat (limited to 'base')
-rw-r--r--base/logging.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/logging.cc b/base/logging.cc
index 227085f..ceb2669 100644
--- a/base/logging.cc
+++ b/base/logging.cc
@@ -81,7 +81,7 @@ LogLockingState lock_log_file = LOCK_LOG_FILE;
// on POSIX platforms, where it may not even be possible to locate the
// executable on disk, use stderr.
#if defined(OS_WIN)
-LoggingDestination logging_destination = LOG_ONLY_TO_FILE;
+LoggingDestination logging_destination = LOG_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG;
#elif defined(OS_POSIX)
LoggingDestination logging_destination = LOG_ONLY_TO_SYSTEM_DEBUG_LOG;
#endif