1
0
Fork 0

Change log level for "prepare_ground_cache(): scenery_available returns false" message as the message occurs at a high rate and seems to be more suited at bulk rather than warn level

This commit is contained in:
Richard Harrison 2017-02-02 06:24:27 +01:00
parent 275d73d01f
commit fa142c9464

View file

@ -331,7 +331,7 @@ FGGroundCache::prepare_ground_cache(double startSimTime, double endSimTime,
// Don't blow away the cache ground_radius and stuff if there's no
// scenery
if (!globals->get_tile_mgr()->schedule_scenery(geodPt, rad, 1.0)) {
SG_LOG(SG_FLIGHT, SG_WARN, "prepare_ground_cache(): scenery_available "
SG_LOG(SG_FLIGHT, SG_BULK, "prepare_ground_cache(): scenery_available "
"returns false at " << geodPt << " " << pt << " " << rad);
return false;
}