diff options
Diffstat (limited to 'OpenSim/Grid/InventoryServer/Main.cs')
-rw-r--r-- | OpenSim/Grid/InventoryServer/Main.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/OpenSim/Grid/InventoryServer/Main.cs b/OpenSim/Grid/InventoryServer/Main.cs index 3987334..2454650 100644 --- a/OpenSim/Grid/InventoryServer/Main.cs +++ b/OpenSim/Grid/InventoryServer/Main.cs | |||
@@ -28,7 +28,10 @@ | |||
28 | using System; | 28 | using System; |
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.IO; | 30 | using System.IO; |
31 | using System.Reflection; | ||
31 | using libsecondlife; | 32 | using libsecondlife; |
33 | using log4net; | ||
34 | using log4net.Config; | ||
32 | using OpenSim.Framework; | 35 | using OpenSim.Framework; |
33 | using OpenSim.Framework.Console; | 36 | using OpenSim.Framework.Console; |
34 | using OpenSim.Framework.Servers; | 37 | using OpenSim.Framework.Servers; |
@@ -37,7 +40,7 @@ namespace OpenSim.Grid.InventoryServer | |||
37 | { | 40 | { |
38 | public class OpenInventory_Main : BaseOpenSimServer, conscmd_callback | 41 | public class OpenInventory_Main : BaseOpenSimServer, conscmd_callback |
39 | { | 42 | { |
40 | private static readonly log4net.ILog m_log = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | 43 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
41 | 44 | ||
42 | private InventoryManager m_inventoryManager; | 45 | private InventoryManager m_inventoryManager; |
43 | private InventoryConfig m_config; | 46 | private InventoryConfig m_config; |
@@ -48,7 +51,7 @@ namespace OpenSim.Grid.InventoryServer | |||
48 | [STAThread] | 51 | [STAThread] |
49 | public static void Main(string[] args) | 52 | public static void Main(string[] args) |
50 | { | 53 | { |
51 | log4net.Config.XmlConfigurator.Configure(); | 54 | XmlConfigurator.Configure(); |
52 | 55 | ||
53 | OpenInventory_Main theServer = new OpenInventory_Main(); | 56 | OpenInventory_Main theServer = new OpenInventory_Main(); |
54 | theServer.Startup(); | 57 | theServer.Startup(); |