| Index: dbus/property.cc
|
| diff --git a/dbus/property.cc b/dbus/property.cc
|
| index 774719f8bf81fc280426d9ac245117daf4814ee3..b518e999737f119fe67c46eb882f9b779104a214 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())
|
|
|