diff options
author | zmo@google.com <zmo@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-17 21:23:05 +0000 |
---|---|---|
committer | zmo@google.com <zmo@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-17 21:23:05 +0000 |
commit | 7ace0ef4e6f659f3243739d1c61c9316cd3f8b61 (patch) | |
tree | e8c58db429d2f550879778ca783fcaa557d8e140 /content/gpu | |
parent | 5ebbb8b4cfc48eb46fcbdbce589abb0301e4f274 (diff) | |
download | chromium_src-7ace0ef4e6f659f3243739d1c61c9316cd3f8b61.zip chromium_src-7ace0ef4e6f659f3243739d1c61c9316cd3f8b61.tar.gz chromium_src-7ace0ef4e6f659f3243739d1c61c9316cd3f8b61.tar.bz2 |
Change LOG to VLOG to avoid a lot of messages in the bots output.
BUG=76576
TEST=no more libpci message in bots output.
Review URL: http://codereview.chromium.org/6713014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78603 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/gpu')
-rw-r--r-- | content/gpu/gpu_info_collector_linux.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/content/gpu/gpu_info_collector_linux.cc b/content/gpu/gpu_info_collector_linux.cc index 6ee7c97..28e0d9b 100644 --- a/content/gpu/gpu_info_collector_linux.cc +++ b/content/gpu/gpu_info_collector_linux.cc @@ -93,7 +93,7 @@ bool IsPciSupported() { PciInterface* InitializeLibPci(const char* lib_name) { void* handle = dlopen(lib_name, RTLD_LAZY); if (handle == NULL) { - LOG(INFO) << "Failed to dlopen " << lib_name; + VLOG(1) << "Failed to dlopen " << lib_name; return NULL; } PciInterface* interface = new struct PciInterface; @@ -116,7 +116,7 @@ PciInterface* InitializeLibPci(const char* lib_name) { interface->pci_scan_bus == NULL || interface->pci_fill_info == NULL || interface->pci_lookup_name == NULL) { - LOG(ERROR) << "Missing required function(s) from " << lib_name; + VLOG(1) << "Missing required function(s) from " << lib_name; dlclose(handle); delete interface; return NULL; @@ -164,7 +164,7 @@ bool CollectVideoCardInfo(GPUInfo* gpu_info) { DCHECK(gpu_info); if (IsPciSupported() == false) { - LOG(INFO) << "PCI bus scanning is not supported"; + VLOG(1) << "PCI bus scanning is not supported"; return false; } @@ -173,7 +173,7 @@ bool CollectVideoCardInfo(GPUInfo* gpu_info) { if (interface == NULL) interface = InitializeLibPci("libpci.so"); if (interface == NULL) { - LOG(ERROR) << "Failed to locate libpci"; + VLOG(1) << "Failed to locate libpci"; return false; } |