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

Unified Diff: services/service_manager/public/cpp/lib/interface_registry.cc

Issue 2704303007: Service Manager: Reduce InterfaceProvider spec spam to DVLOG(1) (Closed)
Patch Set: Created 3 years, 10 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: services/service_manager/public/cpp/lib/interface_registry.cc
diff --git a/services/service_manager/public/cpp/lib/interface_registry.cc b/services/service_manager/public/cpp/lib/interface_registry.cc
index ba2ea2f9dab270a0e6d9e9c36f0c647d030efb86..9fb605d810022f269ca87b9a2e6c970795915620 100644
--- a/services/service_manager/public/cpp/lib/interface_registry.cc
+++ b/services/service_manager/public/cpp/lib/interface_registry.cc
@@ -214,7 +214,7 @@ void InterfaceRegistry::GetInterface(const std::string& interface_name,
std::stringstream details;
Serialize(&details);
- LOG(WARNING) << details.str();
+ DVLOG(1) << details.str();
}
} else {
std::stringstream error;
@@ -226,7 +226,7 @@ void InterfaceRegistry::GetInterface(const std::string& interface_name,
std::stringstream details;
Serialize(&details);
- LOG(WARNING) << details.str();
+ DVLOG(1) << details.str();
}
}
« 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