summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-01-27 16:26:50 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2016-01-27 16:26:50 -0500
commitc61e5dbc18c40f3efbac89744ba6742a972da243 (patch)
tree3c52da76e61a75b38b943e33a6753985a2c5429d
parent7513176501cd1c94845875aa326c57870c143e1b (diff)
remove debug output
-rw-r--r--libs/surfaces/mackie/strip.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/libs/surfaces/mackie/strip.cc b/libs/surfaces/mackie/strip.cc
index d1500509b4..24cae949ca 100644
--- a/libs/surfaces/mackie/strip.cc
+++ b/libs/surfaces/mackie/strip.cc
@@ -532,7 +532,6 @@ Strip::notify_send_level_change (AutomationType type, uint32_t send_num, bool fo
if (control) {
float val = control->get_value();
- cerr << "Queue send level display of " << val << endl;
queue_parameter_display (type, val);
/* update pot/encoder */
_surface->write (_vpot->set (control->internal_to_interface (val), true, Pot::wrap));
@@ -986,7 +985,6 @@ Strip::do_parameter_display (AutomationType type, float val)
if (_route) {
float dB = accurate_coefficient_to_dB (val);
snprintf (buf, sizeof (buf), "%6.1f", dB);
- cerr << "send level write " << val << " as \"" << buf << '"' << endl;
_surface->write (display (1, buf));
screen_hold = true;
}
@@ -1752,7 +1750,6 @@ Strip::setup_sends_vpot (boost::shared_ptr<Route> r)
pc->Changed.connect (subview_connections, MISSING_INVALIDATOR, boost::bind (&Strip::notify_send_level_change, this, BusSendLevel, global_pos, false), ui_context());
_vpot->set_control (pc);
- cerr << "Send name @ " << global_pos << " = " << send->name() << endl;
_surface->write (display (0, send->name()));
notify_send_level_change (BusSendLevel, global_pos, true);