diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/RemoteServer/ScriptEngine.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/RemoteServer/ScriptEngine.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/RemoteServer/ScriptEngine.cs b/OpenSim/Region/ScriptEngine/RemoteServer/ScriptEngine.cs index 0995afb..c33cfd1 100644 --- a/OpenSim/Region/ScriptEngine/RemoteServer/ScriptEngine.cs +++ b/OpenSim/Region/ScriptEngine/RemoteServer/ScriptEngine.cs | |||
@@ -28,8 +28,9 @@ | |||
28 | /* Original code: Tedd Hansen */ | 28 | /* Original code: Tedd Hansen */ |
29 | 29 | ||
30 | using System; | 30 | using System; |
31 | using System.Reflection; | ||
32 | using log4net; | ||
31 | using Nini.Config; | 33 | using Nini.Config; |
32 | using OpenSim.Framework.Console; | ||
33 | using OpenSim.Region.Environment.Interfaces; | 34 | using OpenSim.Region.Environment.Interfaces; |
34 | using OpenSim.Region.Environment.Scenes; | 35 | using OpenSim.Region.Environment.Scenes; |
35 | 36 | ||
@@ -42,7 +43,7 @@ namespace OpenSim.Region.ScriptEngine.RemoteServer | |||
42 | [Serializable] | 43 | [Serializable] |
43 | public class ScriptEngine : IRegionModule | 44 | public class ScriptEngine : IRegionModule |
44 | { | 45 | { |
45 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 46 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
46 | 47 | ||
47 | internal Scene World; | 48 | internal Scene World; |
48 | internal EventManager m_EventManager; // Handles and queues incoming events from OpenSim | 49 | internal EventManager m_EventManager; // Handles and queues incoming events from OpenSim |
@@ -53,7 +54,7 @@ namespace OpenSim.Region.ScriptEngine.RemoteServer | |||
53 | Common.mySE = this; | 54 | Common.mySE = this; |
54 | } | 55 | } |
55 | 56 | ||
56 | public log4net.ILog Log | 57 | public ILog Log |
57 | { | 58 | { |
58 | get { return m_log; } | 59 | get { return m_log; } |
59 | } | 60 | } |