summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2014-09-30 11:25:55 +0200
committerThomas Haller <thaller@redhat.com>2014-09-30 12:02:15 +0200
commit7a7075b3928646ab5c796bb8523901cddc195b24 (patch)
treef2edb58c9ac2fcbf01f25b596471f673653c15cb
parent0218f055b01d6e4d87ccdde2237f943f0852a6c1 (diff)
core/dbus: disable verbose logging when registering object to private socket
This creates a large amount of debug logging, that is not generally useful. Signed-off-by: Thomas Haller <thaller@redhat.com>
-rw-r--r--src/nm-dbus-manager.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nm-dbus-manager.c b/src/nm-dbus-manager.c
index 247b502c85..97f9ad56dc 100644
--- a/src/nm-dbus-manager.c
+++ b/src/nm-dbus-manager.c
@@ -449,8 +449,10 @@ private_connection_new (NMDBusManager *self, DBusGConnection *connection)
g_hash_table_iter_init (&iter, priv->exported);
while (g_hash_table_iter_next (&iter, (gpointer) &object, (gpointer) &path)) {
dbus_g_connection_register_g_object (connection, path, object);
+ /*
nm_log_dbg (LOGD_CORE, "(%s) registered %p (%s) at '%s' on private socket.",
PRIV_SOCK_TAG, object, G_OBJECT_TYPE_NAME (object), path);
+ */
}
}