From acd1c2aeac51c6b6d425f6f6ab705923da024605 Mon Sep 17 00:00:00 2001 From: "mpcomplete@chromium.org" Date: Mon, 11 Oct 2010 19:19:58 +0000 Subject: Add some logging to IncognitoSplitMode to try to figure out why it's crashing. BUG=53991 TEST=no Review URL: http://codereview.chromium.org/3651001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62169 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/extensions/extension_apitest.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'chrome/browser/extensions/extension_apitest.cc') diff --git a/chrome/browser/extensions/extension_apitest.cc b/chrome/browser/extensions/extension_apitest.cc index da9e01c..28ecc68 100644 --- a/chrome/browser/extensions/extension_apitest.cc +++ b/chrome/browser/extensions/extension_apitest.cc @@ -43,6 +43,7 @@ bool ExtensionApiTest::ResultCatcher::GetNextResult() { return ret; } + LOG(INFO) << "DEBUG: results aren't empty"; NOTREACHED(); return false; } @@ -57,7 +58,7 @@ void ExtensionApiTest::ResultCatcher::Observe( switch (type.value) { case NotificationType::EXTENSION_TEST_PASSED: - LOG(INFO) << "Got EXTENSION_TEST_PASSED notification."; + LOG(INFO) << "Got EXTENSION_TEST_PASSED notification (" << this << ")."; results_.push_back(true); messages_.push_back(""); if (waiting_) @@ -65,7 +66,7 @@ void ExtensionApiTest::ResultCatcher::Observe( break; case NotificationType::EXTENSION_TEST_FAILED: - LOG(INFO) << "Got EXTENSION_TEST_FAILED notification."; + LOG(INFO) << "Got EXTENSION_TEST_FAILED notification (" << this << ")."; results_.push_back(false); messages_.push_back(*(Details(details).ptr())); if (waiting_) -- cgit v1.1