summaryrefslogtreecommitdiffstats
path: root/dbus
diff options
context:
space:
mode:
authorstevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-17 05:03:53 +0000
committerstevenjb@chromium.org <stevenjb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-07-17 05:03:53 +0000
commite68986669f5e8908bc94b7938ebdd572bf9094a7 (patch)
treecb52ff09f23d248919d7052531771cff52a09605 /dbus
parentc980b7dfaaeae8511be4ea4ff5799787d10d019c (diff)
downloadchromium_src-e68986669f5e8908bc94b7938ebdd572bf9094a7.zip
chromium_src-e68986669f5e8908bc94b7938ebdd572bf9094a7.tar.gz
chromium_src-e68986669f5e8908bc94b7938ebdd572bf9094a7.tar.bz2
Clean up Chrome OS WARNING spam
BUG=393266 For log only change to profile_io_data.cc (reviewed by mattm) TBR=mmenke@chromium.org Review URL: https://codereview.chromium.org/385993004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@283648 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'dbus')
-rw-r--r--dbus/property.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/dbus/property.cc b/dbus/property.cc
index 774719f..b518e99 100644
--- a/dbus/property.cc
+++ b/dbus/property.cc
@@ -136,7 +136,7 @@ void PropertySet::GetAll() {
void PropertySet::OnGetAll(Response* response) {
if (!response) {
- LOG(WARNING) << "GetAll request failed.";
+ LOG(WARNING) << "GetAll request failed for: " << interface_;
return;
}
@@ -163,7 +163,8 @@ void PropertySet::Set(PropertyBase* property, SetCallback callback) {
callback));
}
-void PropertySet::OnSet(PropertyBase* property, SetCallback callback,
+void PropertySet::OnSet(PropertyBase* property,
+ SetCallback callback,
Response* response) {
LOG_IF(WARNING, !response) << property->name() << ": Set: failed.";
if (!callback.is_null())