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


CrOS-Libchrome-Original-Commit: fe6135245ee7254459e37ae8663c2c98146e8d3c
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 @@
 // 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