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


CrOS-Libchrome-Original-Commit: e68986669f5e8908bc94b7938ebdd572bf9094a7
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::OnGetAll(Response* response) {
   if (!response) {
-    LOG(WARNING) << "GetAll request failed.";
+    LOG(WARNING) << "GetAll request failed for: " << interface_;
     return;
   }
 
@@ -163,7 +163,8 @@
                                        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())