From 1fca4da741f6059fd4ffb440b2037aed4ffb7d6f Mon Sep 17 00:00:00 2001 From: "battre@chromium.org" Date: Tue, 4 Oct 2011 08:03:46 +0000 Subject: 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 --- net/test/test_server.cc | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'net') 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() { -- cgit v1.1