summaryrefslogtreecommitdiff
path: root/libs/ardour/session_state.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-05-17 09:35:52 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2016-05-31 15:30:42 -0400
commit201c5825ac0fda78174cf2a766854b9fa28b1efb (patch)
tree2284661b4611a1e6bd5064a3f41896783a5f5a42 /libs/ardour/session_state.cc
parentdaab42f209796f8628dc2ad58c38fca0410fd156 (diff)
remove debug output
Diffstat (limited to 'libs/ardour/session_state.cc')
-rw-r--r--libs/ardour/session_state.cc18
1 files changed, 0 insertions, 18 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index 0fcda1c3f9..e7769b719a 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -1597,24 +1597,6 @@ Session::load_routes (const XMLNode& node, int version)
BootMessage (_("Finished adding tracks/busses"));
- boost::shared_ptr<Route> r;
- uint32_t n = nroutes ();
-
- for (uint32_t nn = 0; nn < n + 1; ++nn) {
- r = get_remote_nth_route (nn);
- if (r) {
- std::cerr << "Nth-route = " << r->name() << endl;
- } else {
- std::cerr << "Nth-route: undefined\n";
- }
- }
-
- boost::shared_ptr<Stripable> s;
- s = get_remote_nth_stripable (0, PresentationInfo::MasterOut);
- std::cerr << " Master = " << s << std::endl;
- s = get_remote_nth_stripable (0, PresentationInfo::MonitorOut);
- std::cerr << " Monitor = " << s << std::endl;
-
return 0;
}