From 182a33a96863cf49c076a9762f0cef7d81941e9d Mon Sep 17 00:00:00 2001 From: gwaldron Date: Mon, 15 Apr 2019 12:32:48 -0400 Subject: [PATCH] Reduce warning output on EP --- src/osgEarth/ElevationPool.cpp | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/osgEarth/ElevationPool.cpp b/src/osgEarth/ElevationPool.cpp index 1af7105cad..677639d9de 100644 --- a/src/osgEarth/ElevationPool.cpp +++ b/src/osgEarth/ElevationPool.cpp @@ -454,17 +454,6 @@ ElevationEnvelope::getElevations(const std::vector& input, ++count; } - if (count < input.size()) - { - OE_WARN << LC << "Issue: Envelope had failed samples" << std::endl; - for (ElevationPool::QuerySet::const_iterator tile_ref = _tiles.begin(); tile_ref != _tiles.end(); ++tile_ref) - { - ElevationPool::Tile* tile = tile_ref->get(); - OE_WARN << LC << " ... tile " << tile->_bounds.toString() << std::endl; - } - OE_WARN << LC << std::endl; - } - return count; }