mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-02 06:04:39 -04:00
Replaced direct output to console for debug messages with qDebug
This commit is contained in:
@@ -14,7 +14,7 @@
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
||||
///////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include <iostream>
|
||||
#include <QDebug>
|
||||
#include <libbladeRF.h>
|
||||
|
||||
#include "ui_bladerfgui.h"
|
||||
@@ -199,7 +199,7 @@ void BladerfGui::on_fcPos_currentIndexChanged(int index)
|
||||
|
||||
void BladerfGui::on_lna_valueChanged(int value)
|
||||
{
|
||||
std::cerr << "BladerfGui: LNA gain = " << value << std::endl;
|
||||
qDebug() << "BladerfGui: LNA gain = " << value;
|
||||
|
||||
if ((value < 0) || (value > 2))
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user