]> git.mxchange.org Git - flightgear.git/commitdiff
Make error message slightly more informative.
authorcurt <curt>
Fri, 21 Mar 2003 20:39:59 +0000 (20:39 +0000)
committercurt <curt>
Fri, 21 Mar 2003 20:39:59 +0000 (20:39 +0000)
src/Scenery/tilemgr.cxx

index 6ad0ec3d412c91f2aa5ea15d1a2ff7ce5e63a0ef..c5fd377500945b7707afb62da67486d4e5518754 100644 (file)
@@ -158,9 +158,10 @@ void FGTileMgr::schedule_needed( double vis, SGBucket curr_bucket) {
          || latitude < -90.0 || latitude > 90.0 )
     {
         SG_LOG( SG_TERRAIN, SG_ALERT,
-                "Attempting to schedule tiles for bogus latitude and" );
+                "Attempting to schedule tiles for bogus lon and lat  = ("
+                << longitude << "," << latitude << ")" );
         SG_LOG( SG_TERRAIN, SG_ALERT,
-                "longitude.  This is a FATAL error.  Exiting!" );
+                "This is a FATAL error.  Exiting!" );
         exit(-1);        
     }