Remove debug messages, cleanup output (1/2)

This commit is contained in:
Robin Gareus 2024-05-08 00:51:36 +02:00
parent 10109c3147
commit 5d175786e8
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
5 changed files with 0 additions and 9 deletions

View File

@ -2210,8 +2210,6 @@ ARDOUR_UI::update_clocks ()
void
ARDOUR_UI::start_clocking ()
{
std::cerr << "start clocking\n";
if (UIConfiguration::instance().get_no_strobe()) {
if (!_session) {
return;

View File

@ -122,7 +122,6 @@ ARDOUR_UI::create_xrun_marker (samplepos_t where)
void
ARDOUR_UI::halt_on_xrun_message ()
{
cerr << "HALT on xrun\n";
ArdourMessageDialog msg (_main_window, _("Recording was stopped because your system could not keep up."));
msg.run ();
}

View File

@ -649,7 +649,6 @@ Editor::Editor ()
_cursors = new MouseCursors;
_cursors->set_cursor_set (UIConfiguration::instance().get_icon_set());
cerr << "Set cursor set to " << UIConfiguration::instance().get_icon_set() << endl;
/* Push default cursor to ever-present bottom of cursor stack. */
push_canvas_cursor(_cursors->grabber);

View File

@ -4751,8 +4751,6 @@ MidiRegionView::note_to_y(uint8_t note) const
void
MidiRegionView::quantize_selected_notes ()
{
std::cerr << "QSN!\n";
RegionSelection rs;
rs.push_back (this);

View File

@ -200,9 +200,6 @@ PluginUIWindow::PluginUIWindow (std::shared_ptr<PlugInsertBase> pib,
PluginUIWindow::~PluginUIWindow ()
{
#ifndef NDEBUG
cerr << "PluginWindow deleted for " << this << endl;
#endif
delete _pluginui;
if (the_plugin_window == this) {