From 2e90248df80fb257c267cb5c8871541d9b4002ad Mon Sep 17 00:00:00 2001 From: curt Date: Fri, 21 Mar 2003 20:39:59 +0000 Subject: [PATCH] Make error message slightly more informative. --- src/Scenery/tilemgr.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Scenery/tilemgr.cxx b/src/Scenery/tilemgr.cxx index 6ad0ec3d4..c5fd37750 100644 --- a/src/Scenery/tilemgr.cxx +++ b/src/Scenery/tilemgr.cxx @@ -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); } -- 2.39.5