diff options
-rw-r--r-- | chrome/test/live_sync/live_sync_test.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/test/live_sync/live_sync_test.cc b/chrome/test/live_sync/live_sync_test.cc index 888527a..7b4ac35 100644 --- a/chrome/test/live_sync/live_sync_test.cc +++ b/chrome/test/live_sync/live_sync_test.cc @@ -7,6 +7,7 @@ #include <vector> #include "base/command_line.h" +#include "base/logging.h" #include "base/message_loop.h" #include "base/path_service.h" #include "base/platform_thread.h" @@ -93,6 +94,10 @@ LiveSyncTest::LiveSyncTest(TestType test_type) num_clients_(-1), test_server_handle_(base::kNullProcessHandle) { InProcessBrowserTest::set_show_window(true); + + // TODO(rsimha): Remove after investigating flaky and failing sync tests. + logging::SetMinLogLevel(logging::LOG_VERBOSE); + switch (test_type_) { case SINGLE_CLIENT: { num_clients_ = 1; |