Commit b1cb2de2 authored by Don Gagne's avatar Don Gagne

Silence noise debug statements

This makes unit test output easier to read
parent dfe7c2ed
......@@ -220,7 +220,7 @@ void MAVLinkProtocol::linkStatusChanged(bool connected)
// Track the links which are connected to the protocol
QList<LinkInterface*> _connectedLinks; ///< List of all links connected to protocol
qDebug() << "linkStatusChanged" << connected;
//qDebug() << "linkStatusChanged" << connected;
if (link) {
......
......@@ -480,7 +480,7 @@ void UASParameterDataModel::loadParamMetaInfoFromStream(QTextStream& stream)
{
// tooltip
paramDescriptions.insert(parts.at(0).trimmed(), parts.at(6).trimmed());
qDebug() << "PARAM META:" << parts.at(0).trimmed();
//qDebug() << "PARAM META:" << parts.at(0).trimmed();
}
}
}
......
......@@ -118,7 +118,7 @@ void TerminalConsole::fillPortsInfo(QComboBox &comboxBox)
<< (info.productIdentifier() ? QString::number(info.productIdentifier(), 16) : QString());
comboxBox.insertItem(0,list.first(), list);
qDebug() << "Inserting " << list.first();
//qDebug() << "Inserting " << list.first();
}
}
......
......@@ -471,7 +471,7 @@ void LinechartPlot::setCurveColor(QString id, QColor color)
// Change the color of the curve.
curve->setPen(QPen(QBrush(color), curveWidth));
qDebug() << "Setting curve" << id << "to" << color;
//qDebug() << "Setting curve" << id << "to" << color;
// And change the color of the symbol, making sure to preserve the symbol style
const QwtSymbol *oldSymbol = curve->symbol();
......
......@@ -260,6 +260,8 @@ void QGCMapWidget::loadSettings(bool changePosition)
trailInterval = settings.value("TRAIL_INTERVAL", trailInterval).toFloat();
settings.endGroup();
#if 0
// FIXME: NYI
// SET CORRECT MENU CHECKBOXES
// Set the correct trail interval
if (trailType == mapcontrol::UAVTrailType::ByDistance)
......@@ -272,6 +274,7 @@ void QGCMapWidget::loadSettings(bool changePosition)
// XXX
qDebug() << "WARNING: Settings loading for trail type (ByTimeElapsed) not implemented";
}
#endif
// SET TRAIL TYPE
foreach (mapcontrol::UAVItem* uav, GetUAVS())
......
......@@ -31,7 +31,7 @@ void MenuActionHelper::removeDockWidget()
QObject *dockWidget = QObject::sender();
Q_ASSERT(dockWidget);
qDebug() << "Dockwidget:" << dockWidget->objectName() << "of type" << dockWidget->metaObject()->className();
//qDebug() << "Dockwidget:" << dockWidget->objectName() << "of type" << dockWidget->metaObject()->className();
QAction *action = m_menuToDockNameMap.key(dockWidget->objectName());
if(action) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment