diff options
Diffstat (limited to 'dbus')
-rw-r--r-- | dbus/property.cc | 5 |
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()) |