summaryrefslogtreecommitdiffstats
path: root/dbus/dbus_statistics.cc
diff options
context:
space:
mode:
authorposciak@chromium.org <posciak@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-11 11:17:21 +0000
committerposciak@chromium.org <posciak@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-11 11:17:21 +0000
commit65346d834074e34d07f49da610fb519ff8a02483 (patch)
tree0aad8e330edae4ea484d52a5acf90f24123fc43d /dbus/dbus_statistics.cc
parent800fb07561999013357a1e0c17a7fab4430747c0 (diff)
downloadchromium_src-65346d834074e34d07f49da610fb519ff8a02483.zip
chromium_src-65346d834074e34d07f49da610fb519ff8a02483.tar.gz
chromium_src-65346d834074e34d07f49da610fb519ff8a02483.tar.bz2
Make "Ignoring DBusStatistics::AddStat" a DVLOG instead of DLOG(WARNING)
BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/18083039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211070 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'dbus/dbus_statistics.cc')
-rw-r--r--dbus/dbus_statistics.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/dbus/dbus_statistics.cc b/dbus/dbus_statistics.cc
index af1f36b..9abec65 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);