From 5b6e2b088e4b86df16bb56f2fe6ae462b974fff6 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 7 Apr 2020 23:20:15 -0600 Subject: [PATCH] show ARDOUR::Port destructor with either DEBUG::Ports or DEBUG::Destruction --- libs/ardour/port.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/port.cc b/libs/ardour/port.cc index 479063292e..d22e23c2c7 100644 --- a/libs/ardour/port.cc +++ b/libs/ardour/port.cc @@ -91,7 +91,7 @@ Port::Port (std::string const & n, DataType t, PortFlags f) /** Port destructor */ Port::~Port () { - DEBUG_TRACE (DEBUG::Destruction, string_compose ("destroying port @ %1 named %2\n", this, name())); + DEBUG_TRACE (PBD::DebugBits (DEBUG::Destruction|DEBUG::Ports), string_compose ("destroying port @ %1 named %2\n", this, name())); drop (); }