summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authormmentovai@google.com <mmentovai@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-22 17:09:34 +0000
committermmentovai@google.com <mmentovai@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-22 17:09:34 +0000
commitfe6135245ee7254459e37ae8663c2c98146e8d3c (patch)
tree3e2c5c521a7e78b6ceeed1a1b5b47a8311d28e64 /base
parentd35df912a93adafcea593382ff12d0a6a15a9f48 (diff)
downloadchromium_src-fe6135245ee7254459e37ae8663c2c98146e8d3c.zip
chromium_src-fe6135245ee7254459e37ae8663c2c98146e8d3c.tar.gz
chromium_src-fe6135245ee7254459e37ae8663c2c98146e8d3c.tar.bz2
Back out r1223, we'll just look at the logs on the buildbots for now. It would be nice to send only ERROR warnings to stderr to avoid the noise.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1225 0039d316-1c4b-4281-b951-d872f2087c98
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 ceb2669..227085f 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_TO_BOTH_FILE_AND_SYSTEM_DEBUG_LOG;
+LoggingDestination logging_destination = LOG_ONLY_TO_FILE;
#elif defined(OS_POSIX)
LoggingDestination logging_destination = LOG_ONLY_TO_SYSTEM_DEBUG_LOG;
#endif