mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
remove debug output
This commit is contained in:
parent
8ce39c891b
commit
3be9d6dccc
1 changed files with 0 additions and 3 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue