summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2021-03-28 21:23:36 +0200
committerJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2021-03-28 21:24:26 +0200
commit4cada2551e82efa55635331d60adec3cf5300b8c (patch)
tree39389340cb12ed8902cd17548f076caead101ea4
parent611bb1c7be1278b144570e92dc70b1af987b010a (diff)
Hss1394Controller: Increate log level severity to Warning
-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();
}
}