From: mfranz Date: Sat, 20 Jan 2007 23:06:44 +0000 (+0000) Subject: only WARN if fgcommand "load" doesn't find the file; it returns the X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8a489eed0bd0cdf92becad72d64d1398e1bc744e;p=flightgear.git only WARN if fgcommand "load" doesn't find the file; it returns the success/failure result, and it's up to the caller to complain or ignore --- diff --git a/src/Main/fg_commands.cxx b/src/Main/fg_commands.cxx index 5c6af0b2b..e07295dde 100644 --- a/src/Main/fg_commands.cxx +++ b/src/Main/fg_commands.cxx @@ -331,7 +331,7 @@ do_load (const SGPropertyNode * arg) SG_LOG(SG_INPUT, SG_INFO, "Restored flight from " << file); return true; } else { - SG_LOG(SG_INPUT, SG_ALERT, "Cannot load flight from " << file); + SG_LOG(SG_INPUT, SG_WARN, "Cannot load flight from " << file); return false; } }