expose more info from plugin-strip (for GUI display)
[ardour.git] / libs / ardour / session_handle.cc
index 14ba994dc3e9ff83f4edb6c2b11a9fca1c254e33..99358dad0344f051089061627022b768204b9e25 100644 (file)
@@ -17,6 +17,7 @@
 
 */
 
+#include "pbd/demangle.h"
 #include "pbd/error.h"
 #include "pbd/boost_debug.h"
 
@@ -30,12 +31,12 @@ using namespace ARDOUR;
 using namespace PBD;
 
 SessionHandlePtr::SessionHandlePtr (Session* s)
-       : _session (s) 
+       : _session (s)
 {
        if (_session) {
                _session->DropReferences.connect_same_thread (_session_connections, boost::bind (&SessionHandlePtr::session_going_away, this));
        }
-}      
+}
 
 void
 SessionHandlePtr::set_session (Session* s)
@@ -62,11 +63,11 @@ SessionHandlePtr::session_going_away ()
 
 
 SessionHandleRef::SessionHandleRef (Session& s)
-       : _session (s) 
+       : _session (s)
 {
        _session.DropReferences.connect_same_thread (*this, boost::bind (&SessionHandleRef::session_going_away, this));
        _session.Destroyed.connect_same_thread (*this, boost::bind (&SessionHandleRef::insanity_check, this));
-}      
+}
 
 SessionHandleRef::~SessionHandleRef ()
 {
@@ -82,5 +83,11 @@ SessionHandleRef::session_going_away ()
 void
 SessionHandleRef::insanity_check ()
 {
-       cerr << string_compose (_("programming error: %1"), "SessionHandleRef exists across sesssion deletion!") << endl;
+#ifndef NDEBUG
+       cerr << string_compose (
+               _("programming error: %1"),
+               string_compose("SessionHandleRef exists across session deletion! Dynamic type: %1 @ %2",
+                              PBD::demangled_name (*this), this))
+            << endl;
+#endif
 }