From c61e5dbc18c40f3efbac89744ba6742a972da243 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 27 Jan 2016 16:26:50 -0500 Subject: [PATCH] remove debug output --- libs/surfaces/mackie/strip.cc | 3 --- 1 file changed, 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 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);