Remove some debug logging

merge-requests/5/merge
Phil Taylor 2021-08-07 01:16:02 +01:00
rodzic c4ed4d2de4
commit 73e29cd0fd
1 zmienionych plików z 0 dodań i 2 usunięć

Wyświetl plik

@ -550,11 +550,9 @@ void rigCtlClient::socketReadyRead()
} }
else if (command[1] == "PREAMP") { else if (command[1] == "PREAMP") {
value = (float)rigState->preamp * 10; value = (float)rigState->preamp * 10;
qInfo(logRigCtlD()) << "PREAMP:" << command[1] << rigState->preamp << value;
} }
else if (command[1] == "ATT") { else if (command[1] == "ATT") {
value = (float)rigState->attenuator; value = (float)rigState->attenuator;
qInfo(logRigCtlD()) << "ATT:" << command[1] << rigState->attenuator << value;
} }