From e99a88e9b0843b2f4644a50229a1be99b62468cd Mon Sep 17 00:00:00 2001 From: "pkasting@chromium.org" Date: Fri, 22 Oct 2010 18:08:03 +0000 Subject: Convert LOG(INFO) to VLOG(1) - chrome/browser/extensions/. BUG=none TEST=none Review URL: http://codereview.chromium.org/4003001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63534 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/extensions/extension_apitest.cc | 4 ++-- 1 file changed, 2 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 d136b50..18fe7ba 100644 --- a/chrome/browser/extensions/extension_apitest.cc +++ b/chrome/browser/extensions/extension_apitest.cc @@ -68,7 +68,7 @@ void ExtensionApiTest::ResultCatcher::Observe( switch (type.value) { case NotificationType::EXTENSION_TEST_PASSED: - LOG(INFO) << "Got EXTENSION_TEST_PASSED notification."; + VLOG(1) << "Got EXTENSION_TEST_PASSED notification."; results_.push_back(true); messages_.push_back(""); if (waiting_) @@ -76,7 +76,7 @@ void ExtensionApiTest::ResultCatcher::Observe( break; case NotificationType::EXTENSION_TEST_FAILED: - LOG(INFO) << "Got EXTENSION_TEST_FAILED notification."; + VLOG(1) << "Got EXTENSION_TEST_FAILED notification."; results_.push_back(false); messages_.push_back(*(Details(details).ptr())); if (waiting_) -- cgit v1.1