remove debug output

This commit is contained in:
Jan Käberich 2024-12-02 14:23:54 +01:00
parent 9e33a294cd
commit 0b8e1a7b50

View file

@ -203,7 +203,6 @@ void SCPI::process()
auto cmds = cmd.split(";"); auto cmds = cmd.split(";");
SCPINode *lastNode = this; SCPINode *lastNode = this;
for(auto cmd : cmds) { for(auto cmd : cmds) {
qDebug() << "Handling cmd " << cmd;
if(cmd.size() > 0) { if(cmd.size() > 0) {
if(cmd[0] == ':' || cmd[0] == '*') { if(cmd[0] == ':' || cmd[0] == '*') {
// reset to root node // reset to root node
@ -227,7 +226,6 @@ void SCPI::process()
emit output(response); emit output(response);
} }
} }
qDebug() << "handling done";
} }
} }
semProcessing.release(); semProcessing.release();