remove some debug output
authorPaul Davis <paul@linuxaudiosystems.com>
Mon, 11 Apr 2016 20:46:28 +0000 (16:46 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Tue, 31 May 2016 19:30:40 +0000 (15:30 -0400)
gtk2_ardour/route_ui.cc
gtk2_ardour/vca_master_strip.cc

index 695c2d3eaf24e28d9394da33502070b078b9e1a3..91b14d9c7868075681198060b9a0c1d69c60b751 100644 (file)
@@ -1225,8 +1225,6 @@ RouteUI::mute_active_state (Session* s, boost::shared_ptr<Route> r)
 
        if (Config->get_show_solo_mutes() && !Config->get_solo_control_is_listen_control ()) {
 
-               cerr << r->name() << " muted " << r->muted () << " others-soloing " << r->muted_by_others_soloing() << " master " << r->mute_control()->get_masters_value() << endl;
-
                if (r->muted ()) {
                        /* full mute */
                        return Gtkmm2ext::ExplicitActive;
index 80c981be563a299316fe87a9c9d6304b01f9a9ce..1b1572cf7402d5a9a006bb93ef204e36e2ea5a9e 100644 (file)
@@ -198,7 +198,6 @@ VCAMasterStrip::set_selected (bool yn)
 bool
 VCAMasterStrip::solo_release (GdkEventButton*)
 {
-       std::cerr << "VCA solo release, from " << _vca->solo_control()->get_value() << std::endl;
        _vca->solo_control()->set_value (_vca->solo_control()->get_value() ? 0.0 : 1.0, Controllable::NoGroup);
        return true;
 }