1
0
Fork 0

Debugging output tweaks.

This commit is contained in:
curt 2001-01-13 00:14:47 +00:00
parent 5bfca5eff8
commit a701a2be4a

View file

@ -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;
}