Fixed error on shutdown caused by ThreadAbortException sending message through already disposed logger. Thanks ckrinke

afrisby
Tedd Hansen 2007-08-25 22:26:27 +00:00
parent 53ef427e9e
commit 0cd6d26adb
2 changed files with 3 additions and 3 deletions

View File

@ -87,7 +87,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine.Compiler.LSL
//parameters.ReferencedAssemblies.Add("OpenSim.Region.Environment");
parameters.GenerateExecutable = false;
parameters.OutputAssembly = OutFile;
//parameters.IncludeDebugInformation = false;
parameters.IncludeDebugInformation = false;
CompilerResults results = codeProvider.CompileAssemblyFromSource(parameters, Script);
// Go through errors

View File

@ -110,7 +110,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine
}
catch (Exception e)
{
myScriptEngine.Log.Verbose("ScriptEngine", "EventQueueManager Exception killing worker thread: " + e.ToString());
//myScriptEngine.Log.Verbose("ScriptEngine", "EventQueueManager Exception killing worker thread: " + e.ToString());
}
}
}
@ -186,7 +186,7 @@ namespace OpenSim.Region.ScriptEngine.DotNetEngine
} // try
catch (ThreadAbortException tae)
{
myScriptEngine.Log.Verbose("ScriptEngine", "EventQueueManager Worker thread killed: " + tae.Message);
//myScriptEngine.Log.Verbose("ScriptEngine", "EventQueueManager Worker thread killed: " + tae.Message);
}
}