debugging
authorPaul Davis <paul@linuxaudiosystems.com>
Sat, 20 Nov 2010 22:29:01 +0000 (22:29 +0000)
committerPaul Davis <paul@linuxaudiosystems.com>
Sat, 20 Nov 2010 22:29:01 +0000 (22:29 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@8062 d708f5d6-7413-0410-9779-e7cbd77b26cf

libs/ardour/port.cc

index 55481faa64098564672e08aa673d71117b8c4e5f..1c3c99f94c2fc52796c65e9371e25fcfeae5543a 100644 (file)
@@ -56,6 +56,7 @@ Port::Port (std::string const & n, DataType t, Flags f)
        }
 
        if ((_jack_port = jack_port_register (_engine->jack (), _name.c_str (), t.to_jack_type (), _flags, 0)) == 0) {
+                cerr << "Failed to register JACK port, reason is unknown from here\n";
                throw failed_constructor ();
        }
 }