From 07bb23653d81c2a5836c889abb7fe98e46415483 Mon Sep 17 00:00:00 2001 From: Andreas Bircher Date: Mon, 4 Dec 2017 15:16:25 -0500 Subject: [PATCH] cleanup --- src/QGCLoggingCategory.cc | 1 - src/TerrainTile.cc | 1 - 2 files changed, 2 deletions(-) diff --git a/src/QGCLoggingCategory.cc b/src/QGCLoggingCategory.cc index 9372e6cf4..662de9b4f 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 878497f76..d1b63940b 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 { -- 2.22.0