Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2455)

Unified Diff: content/gpu/gpu_info_collector_linux.cc

Issue 6713014: Change LOG to VLOG to avoid a lot of messages in the bots output. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/gpu/gpu_info_collector_linux.cc
===================================================================
--- content/gpu/gpu_info_collector_linux.cc (revision 78595)
+++ content/gpu/gpu_info_collector_linux.cc (working copy)
@@ -93,7 +93,7 @@
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 @@
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 @@
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 @@
if (interface == NULL)
interface = InitializeLibPci("libpci.so");
if (interface == NULL) {
- LOG(ERROR) << "Failed to locate libpci";
+ VLOG(1) << "Failed to locate libpci";
return false;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698