1
0
Fork 0

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
This commit is contained in:
mfranz 2007-01-20 23:06:44 +00:00
parent 39269a1bb9
commit 8a489eed0b

View file

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