From 747a8476391960796dcda4e020ffb640293ec772 Mon Sep 17 00:00:00 2001 From: nedko Date: Sun, 24 May 2009 19:54:09 +0000 Subject: [PATCH] Improved log messages git-svn-id: http://subversion.jackaudio.org/jack/jack2/trunk/jackmp@3549 0c269be4-1314-0410-8aa9-9f06e86f4224 --- dbus/controller_iface_patchbay.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dbus/controller_iface_patchbay.c b/dbus/controller_iface_patchbay.c index 749cca1f..6c9763a7 100644 --- a/dbus/controller_iface_patchbay.c +++ b/dbus/controller_iface_patchbay.c @@ -423,7 +423,7 @@ jack_controller_patchbay_new_port( const char *port_short_name; size_t client_name_len; - //jack_info("name: %s", port_full_name); + //jack_info("new port: %s", port_full_name); port_short_name = strchr(port_full_name, ':'); if (port_short_name == NULL) @@ -489,6 +489,8 @@ jack_controller_patchbay_remove_port( struct jack_controller_patchbay *patchbay_ptr, struct jack_graph_port *port_ptr) { + //jack_info("remove port: %s", port_ptr->name); + pthread_mutex_lock(&patchbay_ptr->lock); list_del(&port_ptr->siblings_client); list_del(&port_ptr->siblings_graph);