From: Alan Webb <alan_webb> & Dr Scofield<drscofield@xyzzyxyzzy.net>

Disable use of log4net in script domains to avoid mono 2.4 aborts.
This commit is contained in:
Dr Scofield
2009-05-18 15:32:06 +00:00
parent 2534078380
commit e1a1d38aff
2 changed files with 22 additions and 22 deletions

View File

@@ -66,7 +66,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
/// </summary>
public class LSL_Api : MarshalByRefObject, ILSL_Api, IScriptApi
{
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
// private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
protected IScriptEngine m_ScriptEngine;
protected SceneObjectPart m_host;
protected uint m_localID;
@@ -8114,7 +8114,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
}
catch(Exception e)
{
m_log.Error("[LSL_API]: llRequestSimulatorData" + e.ToString());
//m_log.Error("[LSL_API]: llRequestSimulatorData" + e.ToString());
return UUID.Zero.ToString();
}
}