summaryrefslogtreecommitdiff
path: root/libs/ardour/midi_ui.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2016-01-18 15:53:28 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2016-01-18 15:53:28 -0500
commit650ee5a3178960c394c29750f69122398b59fd38 (patch)
tree4b5e5a9d20fd8246272929a0a4459f95a198a650 /libs/ardour/midi_ui.cc
parent97f180c432fb250fe5683cc88f2112c14414a483 (diff)
use cout instead of cerr, since this debugging is for windows
Diffstat (limited to 'libs/ardour/midi_ui.cc')
-rw-r--r--libs/ardour/midi_ui.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/midi_ui.cc b/libs/ardour/midi_ui.cc
index 8d924350bf..6b629aabd5 100644
--- a/libs/ardour/midi_ui.cc
+++ b/libs/ardour/midi_ui.cc
@@ -85,9 +85,9 @@ bool
MidiControlUI::midi_input_handler (IOCondition ioc, boost::shared_ptr<AsyncMIDIPort> port)
{
DEBUG_TRACE (DEBUG::MidiIO, string_compose ("something happend on %1\n", boost::shared_ptr<ARDOUR::Port> (port)->name()));
- cerr << "Something happened on " << boost::shared_ptr<ARDOUR::Port> (port)->name() << " ioc = " << hex << ioc << dec << endl;
+ cout << "Something happened on " << boost::shared_ptr<ARDOUR::Port> (port)->name() << " ioc = " << hex << ioc << dec << endl;
if (ioc & ~IO_IN) {
- cerr << "....no input ... do nothing\n";
+ cout << "....no input ... do nothing" << endl;
return false;
}
@@ -95,7 +95,7 @@ MidiControlUI::midi_input_handler (IOCondition ioc, boost::shared_ptr<AsyncMIDIP
port->clear ();
DEBUG_TRACE (DEBUG::MidiIO, string_compose ("data available on %1\n", boost::shared_ptr<ARDOUR::Port>(port)->name()));
- cerr << "....input appears ready\n";
+ cout << "....input appears ready\n";
framepos_t now = _session.engine().sample_time();
port->parse (now);
}