diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-22 18:08:03 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-22 18:08:03 +0000 |
commit | e99a88e9b0843b2f4644a50229a1be99b62468cd (patch) | |
tree | 1b842ae5306870bceb461d1e06d6b2fe403e625c /chrome/browser/extensions/extension_apitest.cc | |
parent | ebdda909a0b5d22e7e8ec4546a05751336385ab9 (diff) | |
download | chromium_src-e99a88e9b0843b2f4644a50229a1be99b62468cd.zip chromium_src-e99a88e9b0843b2f4644a50229a1be99b62468cd.tar.gz chromium_src-e99a88e9b0843b2f4644a50229a1be99b62468cd.tar.bz2 |
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
Diffstat (limited to 'chrome/browser/extensions/extension_apitest.cc')
-rw-r--r-- | chrome/browser/extensions/extension_apitest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
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<std::string>(details).ptr())); if (waiting_) |