summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2016-08-31 11:33:01 +0200
committerThomas Haller <thaller@redhat.com>2016-08-31 11:40:12 +0200
commitcb8b79d0d59d8f9a2193444f5fca4e7b77c8c08f (patch)
tree60d83fd30b7edfc9b81bc92400670bc4fa91d8bd
parentfa8c51f0450d9a5846b80a306d67449c2558a90b (diff)
downloadNetworkManager-th/dbus-property-changed-source-iface-bgo770629.tar.gz
exported-object: cleanup logging about properties-changedth/dbus-property-changed-source-iface-bgo770629
-rw-r--r--src/nm-exported-object.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nm-exported-object.c b/src/nm-exported-object.c
index ecd09be02b..673b226b7a 100644
--- a/src/nm-exported-object.c
+++ b/src/nm-exported-object.c
@@ -825,9 +825,9 @@ idle_emit_properties_changed (gpointer self)
if (nm_logging_enabled (LOGL_DEBUG, LOGD_DBUS_PROPS)) {
gs_free char *notification = g_variant_print (variant, TRUE);
- nm_log_dbg (LOGD_DBUS_PROPS, "PropertiesChanged %s, %s, %p: %s",
- G_OBJECT_TYPE_NAME (self), G_OBJECT_TYPE_NAME (ifdata->interface),
- self, notification);
+ nm_log_dbg (LOGD_DBUS_PROPS, "properties-changed[%p]: type %s, iface %s: %s",
+ self, G_OBJECT_TYPE_NAME (self), G_OBJECT_TYPE_NAME (ifdata->interface),
+ notification);
}
g_signal_emit (ifdata->interface, ifdata->property_changed_signal_id, 0, variant);
@@ -864,8 +864,8 @@ nm_exported_object_notify (GObject *object, GParamSpec *pspec)
break;
}
if (!dbus_property_name) {
- nm_log_trace (LOGD_DBUS_PROPS, "ignoring notification for prop %s on type %s",
- pspec->name, G_OBJECT_TYPE_NAME (object));
+ nm_log_trace (LOGD_DBUS_PROPS, "properties-changed[%p]: ignoring notification for prop %s on type %s",
+ object, pspec->name, G_OBJECT_TYPE_NAME (object));
return;
}