summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index edd38eb80c..dd0c8579ff 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -1660,8 +1660,6 @@ Route::set_processor_state (const XMLNode& node)
has_meter_processor = true;
}
- cerr << _name << " setting up proc state for " << prop->value() << endl;
-
o = i;
if (prop->value() != "meter" && prop->value() != "amp" && prop->value() != "main-outs") {
@@ -1682,8 +1680,6 @@ Route::set_processor_state (const XMLNode& node)
// create it and move it to the correct location
if (o == _processors.end()) {
- cerr << "\tproc not in list\n";
-
if (add_processor_from_xml (**niter, i)) {
--i; // move iterator to the newly inserted processor
} else {
@@ -1694,8 +1690,6 @@ Route::set_processor_state (const XMLNode& node)
// ensure it is at the location provided in the XML state
} else {
- cerr << "\tproc in wrong place in list\n";
-
if (i != o) {
boost::shared_ptr<Processor> tmp = (*o);
_processors.erase (o); // remove the old copy
@@ -1703,7 +1697,6 @@ Route::set_processor_state (const XMLNode& node)
--i; // move iterator to the correct processor
}
- cerr << "\tnow reset proc " << (*i)->name() << endl;
(*i)->set_state (**niter);
}
}