summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/controllers/midi/hss1394controller.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/controllers/midi/hss1394controller.cpp b/src/controllers/midi/hss1394controller.cpp
index 3512f58e33..01a74286d1 100644
--- a/src/controllers/midi/hss1394controller.cpp
+++ b/src/controllers/midi/hss1394controller.cpp
@@ -195,7 +195,7 @@ void Hss1394Controller::sendShortMsg(unsigned char status, unsigned char byte1,
MidiUtils::opCodeFromStatus(status)));
if (bytesSent != 3) {
- qDebug() << "ERROR: Sent" << bytesSent << "of 3 bytes:" << status << byte1 << byte2;
+ qWarning() << "Sent" << bytesSent << "of 3 bytes:" << status << byte1 << byte2;
//m_pChannel->Flush();
}
}
@@ -206,7 +206,7 @@ void Hss1394Controller::send(const QByteArray& data) {
controllerDebug(MidiUtils::formatSysexMessage(getName(), data));
if (bytesSent != data.size()) {
- qDebug() << "ERROR: Sent" << bytesSent << "of" << data.size() << "bytes (SysEx)";
+ qWarning() << "Sent" << bytesSent << "of" << data.size() << "bytes (SysEx)";
//m_pChannel->Flush();
}
}