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:
parent
39269a1bb9
commit
8a489eed0b
1 changed files with 1 additions and 1 deletions
|
@ -331,7 +331,7 @@ do_load (const SGPropertyNode * arg)
|
||||||
SG_LOG(SG_INPUT, SG_INFO, "Restored flight from " << file);
|
SG_LOG(SG_INPUT, SG_INFO, "Restored flight from " << file);
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} 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;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue