summaryrefslogtreecommitdiff
path: root/libs/ardour/port_manager.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/port_manager.cc')
-rw-r--r--libs/ardour/port_manager.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/libs/ardour/port_manager.cc b/libs/ardour/port_manager.cc
index 0eff8cede0..24c693c431 100644
--- a/libs/ardour/port_manager.cc
+++ b/libs/ardour/port_manager.cc
@@ -656,6 +656,8 @@ PortManager::reconnect_ports ()
void
PortManager::connect_callback (const string& a, const string& b, bool conn)
{
+ DEBUG_TRACE (DEBUG::BackendCallbacks, string_compose (X_("connect callback %1 + %2 connected ? %3\n"), a, b, conn));
+
boost::shared_ptr<Port> port_a;
boost::shared_ptr<Port> port_b;
Ports::iterator x;
@@ -695,6 +697,8 @@ PortManager::connect_callback (const string& a, const string& b, bool conn)
void
PortManager::registration_callback ()
{
+ DEBUG_TRACE (DEBUG::BackendCallbacks, "port registration callback\n");
+
if (!_port_remove_in_progress) {
{
@@ -767,6 +771,8 @@ PortManager::my_name() const
int
PortManager::graph_order_callback ()
{
+ DEBUG_TRACE (DEBUG::BackendCallbacks, "graph order callback\n");
+
if (!_port_remove_in_progress) {
GraphReordered(); /* EMIT SIGNAL */
}