From 0b8e1a7b509fade6604499ef208c9ccec98c02a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20K=C3=A4berich?= Date: Mon, 2 Dec 2024 14:23:54 +0100 Subject: [PATCH] remove debug output --- Software/PC_Application/LibreVNA-GUI/scpi.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Software/PC_Application/LibreVNA-GUI/scpi.cpp b/Software/PC_Application/LibreVNA-GUI/scpi.cpp index 5fae1b4..f873e9b 100644 --- a/Software/PC_Application/LibreVNA-GUI/scpi.cpp +++ b/Software/PC_Application/LibreVNA-GUI/scpi.cpp @@ -203,7 +203,6 @@ void SCPI::process() auto cmds = cmd.split(";"); SCPINode *lastNode = this; for(auto cmd : cmds) { - qDebug() << "Handling cmd " << cmd; if(cmd.size() > 0) { if(cmd[0] == ':' || cmd[0] == '*') { // reset to root node @@ -227,7 +226,6 @@ void SCPI::process() emit output(response); } } - qDebug() << "handling done"; } } semProcessing.release();