From a701a2be4a538ac474b2413969c55ebe50ba437d Mon Sep 17 00:00:00 2001 From: curt Date: Sat, 13 Jan 2001 00:14:47 +0000 Subject: [PATCH] Debugging output tweaks. --- src/Objects/obj.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Objects/obj.cxx b/src/Objects/obj.cxx index b7c0d63a4..def2cef5a 100644 --- a/src/Objects/obj.cxx +++ b/src/Objects/obj.cxx @@ -380,8 +380,8 @@ static ssgBranch *fgAsciiObjLoad( const string& path, FGTileEntry *t, // Attempt to open "path.gz" or "path" fg_gzifstream in( path ); if ( ! in.is_open() ) { - FG_LOG( FG_TERRAIN, FG_ALERT, "Cannot open file: " << path ); - FG_LOG( FG_TERRAIN, FG_ALERT, "default to ocean tile: " << path ); + FG_LOG( FG_TERRAIN, FG_DEBUG, "Cannot open file: " << path ); + FG_LOG( FG_TERRAIN, FG_DEBUG, "default to ocean tile: " << path ); return NULL; }