From: curt Date: Sat, 13 Jan 2001 00:14:47 +0000 (+0000) Subject: Debugging output tweaks. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a701a2be4a538ac474b2413969c55ebe50ba437d;p=flightgear.git Debugging output tweaks. --- 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; }