X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FScenery%2Fnewcache.cxx;h=0ba6176f8acb61f26feb6301caa41976fcd7d3ae;hb=0fe90a83dd5df063252c10f50d9f8320e9055637;hp=4da87508d8b6e944eb493159e3cfbb9bd3aa3b75;hpb=988516996438f625e5a9d2467707d4f526200fd4;p=flightgear.git diff --git a/src/Scenery/newcache.cxx b/src/Scenery/newcache.cxx index 4da87508d..0ba6176f8 100644 --- a/src/Scenery/newcache.cxx +++ b/src/Scenery/newcache.cxx @@ -25,13 +25,6 @@ # include #endif -#ifdef HAVE_WINDOWS_H -# include -#endif - -#include -#include - #include // plib include #include @@ -144,7 +137,7 @@ bool FGNewCache::make_space() { } } else { - SG_LOG( SG_TERRAIN, SG_INFO, "loaded = " << e->is_loaded() + SG_LOG( SG_TERRAIN, SG_DEBUG, "loaded = " << e->is_loaded() << " pending models = " << e->get_pending_models() << " time stamp = " << e->get_timestamp() ); } @@ -153,9 +146,9 @@ bool FGNewCache::make_space() { // If we made it this far, then there were no open cache entries. // We will instead free the oldest cache entry and return true - SG_LOG( SG_TERRAIN, SG_INFO, " min_time = " << min_time ); - SG_LOG( SG_TERRAIN, SG_INFO, " index = " << max_index ); - SG_LOG( SG_TERRAIN, SG_INFO, " max_time = " << max_time ); + SG_LOG( SG_TERRAIN, SG_DEBUG, " min_time = " << min_time ); + SG_LOG( SG_TERRAIN, SG_DEBUG, " index = " << max_index ); + SG_LOG( SG_TERRAIN, SG_DEBUG, " max_time = " << max_time ); if ( max_index >= 0 ) { entry_free( max_index ); return true; @@ -206,9 +199,9 @@ long FGNewCache::get_oldest_tile() { } } - SG_LOG( SG_TERRAIN, SG_INFO, " min_time = " << min_time ); - SG_LOG( SG_TERRAIN, SG_INFO, " index = " << min_index ); - SG_LOG( SG_TERRAIN, SG_INFO, " max_time = " << max_time ); + SG_LOG( SG_TERRAIN, SG_DEBUG, " min_time = " << min_time ); + SG_LOG( SG_TERRAIN, SG_DEBUG, " index = " << min_index ); + SG_LOG( SG_TERRAIN, SG_DEBUG, " max_time = " << max_time ); return min_index; }