From fa142c946440948e4faee10e8c49b79adbe8dfe8 Mon Sep 17 00:00:00 2001
From: Richard Harrison <rjh@zaretto.com>
Date: Thu, 2 Feb 2017 06:24:27 +0100
Subject: [PATCH] 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

---
 src/FDM/groundcache.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/FDM/groundcache.cxx b/src/FDM/groundcache.cxx
index 0b341159a..b391df41f 100644
--- a/src/FDM/groundcache.cxx
+++ b/src/FDM/groundcache.cxx
@@ -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;
     }