minor: correct log message when script with non-config stop strategy is detected to log actual strategy rather than true/false

0.8.1-post-fixes
Justin Clark-Casey (justincc) 2015-01-29 18:28:17 +00:00
parent b4e955d1c1
commit 557b0fae85
1 changed files with 1 additions and 1 deletions

View File

@ -1460,7 +1460,7 @@ namespace OpenSim.Region.ScriptEngine.XEngine
m_log.WarnFormat(
"[XEngine]: At least one existing compiled script DLL in {0} has {1} as ScriptStopStrategy whereas config setting is {2}."
+ "\nContinuing with script compiled strategy but to remove this message please set [XEngine] DeleteScriptsOnStartup = true for one simulator session to remove old script DLLs (script state will not be lost).",
World.Name, coopTerminationForThisScript ? "co-op" : "abort", m_coopTermination);
World.Name, coopTerminationForThisScript ? "co-op" : "abort", m_coopTermination ? "co-op" : "abort");
HaveNotifiedLogOfScriptStopMistmatch = true;
}