remove debug output

This commit is contained in:
Paul Davis 2016-03-02 12:25:37 -05:00
parent 8ce39c891b
commit 3be9d6dccc

View file

@ -2517,7 +2517,6 @@ MixerStrip::vca_assign (boost::shared_ptr<VCA> vca)
if (!vca || !_route) {
return;
}
cerr << "Adding " << _route->name() << " to " << vca->number() << endl;
_route->gain_control()->add_master (vca);
}
@ -2530,10 +2529,8 @@ MixerStrip::vca_unassign (boost::shared_ptr<VCA> vca)
if (!vca) {
/* null VCA means drop all VCA assignments */
cerr << "clear vcas for " << _route->name() << endl;
_route->gain_control()->clear_masters ();
} else {
cerr << "Removing " << _route->name() << " from " << vca->number() << endl;
_route->gain_control()->remove_master (vca);
}
}