diff options
author | battre@chromium.org <battre@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-04 08:03:46 +0000 |
---|---|---|
committer | battre@chromium.org <battre@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-04 08:03:46 +0000 |
commit | 1fca4da741f6059fd4ffb440b2037aed4ffb7d6f (patch) | |
tree | 48be54beb75046e4920b802976ccfbc0606bab0a /net | |
parent | 7afaca42d31f24d157f982680a10d7d1bed13a2a (diff) | |
download | chromium_src-1fca4da741f6059fd4ffb440b2037aed4ffb7d6f.zip chromium_src-1fca4da741f6059fd4ffb440b2037aed4ffb7d6f.tar.gz chromium_src-1fca4da741f6059fd4ffb440b2037aed4ffb7d6f.tar.bz2 |
Revert 103326 - Disable logging to console in TestServer (bug occured again)
This CL disables the logging of all output of the test server to the console by default. This was introduced to debug flakyness (http://crbug.com/96594) that vanished.
BUG=96594
TEST=no
Review URL: http://codereview.chromium.org/8060050
TBR=battre@chromium.org
Review URL: http://codereview.chromium.org/8122018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103859 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net')
-rw-r--r-- | net/test/test_server.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/test/test_server.cc b/net/test/test_server.cc index 6e67753..4850f4f 100644 --- a/net/test/test_server.cc +++ b/net/test/test_server.cc @@ -280,6 +280,10 @@ void TestServer::Init(const FilePath& document_root) { .Append(FILE_PATH_LITERAL("data")) .Append(FILE_PATH_LITERAL("ssl")) .Append(FILE_PATH_LITERAL("certificates")); + + // TODO(battre) Remove this after figuring out why the TestServer is flaky. + // http://crbug.com/96594 + log_to_console_ = true; } bool TestServer::SetPythonPath() { |