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

Unified Diff: dbus/dbus_statistics.cc

Issue 18083039: Make "Ignoring DBusStatistics::AddStat" a DVLOG instead of DLOG(WARNING) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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: dbus/dbus_statistics.cc
diff --git a/dbus/dbus_statistics.cc b/dbus/dbus_statistics.cc
index eeb2f0ace0f2964e0075e172172b0819f6c144b2..3a615e58bc42bce28d7e042cd4feaf232c02994f 100644
--- a/dbus/dbus_statistics.cc
+++ b/dbus/dbus_statistics.cc
@@ -84,8 +84,8 @@ class DBusStatistics {
const std::string& method,
StatType type) {
if (base::PlatformThread::CurrentId() != origin_thread_id_) {
- DLOG(WARNING) << "Ignoring DBusStatistics::AddStat call from thread: "
- << base::PlatformThread::CurrentId();
+ DVLOG(1) << "Ignoring DBusStatistics::AddStat call from thread: "
+ << base::PlatformThread::CurrentId();
return;
}
Stat* stat = GetStat(service, interface, method, true);
« 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