Improve log message when fgfs_lock.pid exists
Part of addressing: https://sourceforge.net/p/flightgear/codetickets/2133/ Still need to decide about a better GUI dialog for this.
This commit is contained in:
parent
489e6abb2a
commit
954385ce0d
1 changed files with 3 additions and 1 deletions
|
@ -515,6 +515,8 @@ bool fgInitHome()
|
|||
if (err < 0) {
|
||||
if ( errno == EWOULDBLOCK) {
|
||||
SG_LOG(SG_GENERAL, SG_ALERT, "flightgear instance already running, switching to FG_HOME read-only. ");
|
||||
SG_LOG(SG_GENERAL, SG_ALERT, "Couldn't flock() file at:" << pidPath);
|
||||
|
||||
// set a marker property so terrasync/navcache don't try to write
|
||||
// from secondary instances
|
||||
fgSetBool("/sim/fghome-readonly", true);
|
||||
|
|
Loading…
Reference in a new issue