diff --git a/src/QGCLoggingCategory.cc b/src/QGCLoggingCategory.cc index 9372e6cf49fdb1f0fb16632663c377a7c23a245e..662de9b4f1361b922974691396b3cfc377e26daf 100644 --- a/src/QGCLoggingCategory.cc +++ b/src/QGCLoggingCategory.cc @@ -79,7 +79,6 @@ void QGCLoggingCategoryRegister::setFilterRulesFromSettings(const QString& comma } // Command line rules take precedence, so they go last in the list - _commandLineLoggingOptions += "TerrainLog,TerrainTileLog"; if (!_commandLineLoggingOptions.isEmpty()) { QStringList logList = _commandLineLoggingOptions.split(","); diff --git a/src/TerrainTile.cc b/src/TerrainTile.cc index 878497f768a91e851b4f4b2db4c60a0df7165442..d1b63940b479ea6324d30dff2f1c11ebf940f3da 100644 --- a/src/TerrainTile.cc +++ b/src/TerrainTile.cc @@ -161,7 +161,6 @@ float TerrainTile::elevation(const QGeoCoordinate& coordinate) const // Get the index at resolution of 1 arc second int indexLat = _latToDataIndex(coordinate.latitude()); int indexLon = _lonToDataIndex(coordinate.longitude()); - qCDebug(TerrainTileLog) << "indexLat:indexLon" << indexLat << indexLon; qCDebug(TerrainTileLog) << "indexLat:indexLon" << indexLat << indexLon << "elevation" << _data[indexLat][indexLon]; return _data[indexLat][indexLon]; } else {