diff options
Diffstat (limited to '')
-rw-r--r-- | OpenGridServices/OpenGridServices.GridServer/GridManager.cs | 26 | ||||
-rw-r--r-- | OpenGridServices/OpenGridServices.GridServer/Main.cs | 12 |
2 files changed, 19 insertions, 19 deletions
diff --git a/OpenGridServices/OpenGridServices.GridServer/GridManager.cs b/OpenGridServices/OpenGridServices.GridServer/GridManager.cs index 6315a4a..81da18e 100644 --- a/OpenGridServices/OpenGridServices.GridServer/GridManager.cs +++ b/OpenGridServices/OpenGridServices.GridServer/GridManager.cs | |||
@@ -26,10 +26,10 @@ namespace OpenGridServices.GridServer | |||
26 | /// <param name="FileName">The filename to the grid server plugin DLL</param> | 26 | /// <param name="FileName">The filename to the grid server plugin DLL</param> |
27 | public void AddPlugin(string FileName) | 27 | public void AddPlugin(string FileName) |
28 | { | 28 | { |
29 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"Storage: Attempting to load " + FileName); | 29 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("Storage: Attempting to load " + FileName); |
30 | Assembly pluginAssembly = Assembly.LoadFrom(FileName); | 30 | Assembly pluginAssembly = Assembly.LoadFrom(FileName); |
31 | 31 | ||
32 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"Storage: Found " + pluginAssembly.GetTypes().Length + " interfaces."); | 32 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("Storage: Found " + pluginAssembly.GetTypes().Length + " interfaces."); |
33 | foreach (Type pluginType in pluginAssembly.GetTypes()) | 33 | foreach (Type pluginType in pluginAssembly.GetTypes()) |
34 | { | 34 | { |
35 | if (!pluginType.IsAbstract) | 35 | if (!pluginType.IsAbstract) |
@@ -42,7 +42,7 @@ namespace OpenGridServices.GridServer | |||
42 | IGridData plug = (IGridData)Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString())); | 42 | IGridData plug = (IGridData)Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString())); |
43 | plug.Initialise(); | 43 | plug.Initialise(); |
44 | this._plugins.Add(plug.getName(), plug); | 44 | this._plugins.Add(plug.getName(), plug); |
45 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"Storage: Added IGridData Interface"); | 45 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("Storage: Added IGridData Interface"); |
46 | } | 46 | } |
47 | 47 | ||
48 | typeInterface = null; | 48 | typeInterface = null; |
@@ -55,7 +55,7 @@ namespace OpenGridServices.GridServer | |||
55 | ILogData plug = (ILogData)Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString())); | 55 | ILogData plug = (ILogData)Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString())); |
56 | plug.Initialise(); | 56 | plug.Initialise(); |
57 | this._logplugins.Add(plug.getName(), plug); | 57 | this._logplugins.Add(plug.getName(), plug); |
58 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "Storage: Added ILogData Interface"); | 58 | OpenSim.Framework.Console.MainConsole.Instance.Verbose( "Storage: Added ILogData Interface"); |
59 | } | 59 | } |
60 | 60 | ||
61 | typeInterface = null; | 61 | typeInterface = null; |
@@ -83,7 +83,7 @@ namespace OpenGridServices.GridServer | |||
83 | } | 83 | } |
84 | catch (Exception e) | 84 | catch (Exception e) |
85 | { | 85 | { |
86 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.NORMAL, "Storage: unable to write log via " + kvp.Key); | 86 | OpenSim.Framework.Console.MainConsole.Instance.Warn("Storage: unable to write log via " + kvp.Key); |
87 | } | 87 | } |
88 | } | 88 | } |
89 | } | 89 | } |
@@ -102,7 +102,7 @@ namespace OpenGridServices.GridServer | |||
102 | } | 102 | } |
103 | catch (Exception e) | 103 | catch (Exception e) |
104 | { | 104 | { |
105 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.NORMAL,"Storage: Unable to find region " + uuid.ToStringHyphenated() + " via " + kvp.Key); | 105 | OpenSim.Framework.Console.MainConsole.Instance.Warn("Storage: Unable to find region " + uuid.ToStringHyphenated() + " via " + kvp.Key); |
106 | } | 106 | } |
107 | } | 107 | } |
108 | return null; | 108 | return null; |
@@ -123,7 +123,7 @@ namespace OpenGridServices.GridServer | |||
123 | } | 123 | } |
124 | catch (Exception e) | 124 | catch (Exception e) |
125 | { | 125 | { |
126 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.NORMAL,"Storage: Unable to find region " + handle.ToString() + " via " + kvp.Key); | 126 | OpenSim.Framework.Console.MainConsole.Instance.Warn("Storage: Unable to find region " + handle.ToString() + " via " + kvp.Key); |
127 | } | 127 | } |
128 | } | 128 | } |
129 | return null; | 129 | return null; |
@@ -147,7 +147,7 @@ namespace OpenGridServices.GridServer | |||
147 | } | 147 | } |
148 | catch (Exception e) | 148 | catch (Exception e) |
149 | { | 149 | { |
150 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.NORMAL, "Storage: Unable to query regionblock via " + kvp.Key); | 150 | OpenSim.Framework.Console.MainConsole.Instance.Warn("Storage: Unable to query regionblock via " + kvp.Key); |
151 | } | 151 | } |
152 | } | 152 | } |
153 | 153 | ||
@@ -335,7 +335,7 @@ namespace OpenGridServices.GridServer | |||
335 | 335 | ||
336 | simProfileList.Add(simProfileBlock); | 336 | simProfileList.Add(simProfileBlock); |
337 | } | 337 | } |
338 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.VERBOSE, "World map request processed, returned " + simProfileList.Count.ToString() + " region(s) in range via FastMode"); | 338 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("World map request processed, returned " + simProfileList.Count.ToString() + " region(s) in range via FastMode"); |
339 | } | 339 | } |
340 | else | 340 | else |
341 | { | 341 | { |
@@ -361,7 +361,7 @@ namespace OpenGridServices.GridServer | |||
361 | } | 361 | } |
362 | } | 362 | } |
363 | } | 363 | } |
364 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.VERBOSE, "World map request processed, returned " + simProfileList.Count.ToString() + " region(s) in range via Standard Mode"); | 364 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("World map request processed, returned " + simProfileList.Count.ToString() + " region(s) in range via Standard Mode"); |
365 | } | 365 | } |
366 | 366 | ||
367 | responseData["sim-profiles"] = simProfileList; | 367 | responseData["sim-profiles"] = simProfileList; |
@@ -522,18 +522,18 @@ namespace OpenGridServices.GridServer | |||
522 | 522 | ||
523 | try | 523 | try |
524 | { | 524 | { |
525 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"Updating / adding via " + _plugins.Count + " storage provider(s) registered."); | 525 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("Updating / adding via " + _plugins.Count + " storage provider(s) registered."); |
526 | foreach (KeyValuePair<string, IGridData> kvp in _plugins) | 526 | foreach (KeyValuePair<string, IGridData> kvp in _plugins) |
527 | { | 527 | { |
528 | try | 528 | try |
529 | { | 529 | { |
530 | kvp.Value.AddProfile(TheSim); | 530 | kvp.Value.AddProfile(TheSim); |
531 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"New sim added to grid (" + TheSim.regionName + ")"); | 531 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("New sim added to grid (" + TheSim.regionName + ")"); |
532 | logToDB(TheSim.UUID.ToStringHyphenated(), "RestSetSimMethod", "", 5, "Region successfully updated and connected to grid."); | 532 | logToDB(TheSim.UUID.ToStringHyphenated(), "RestSetSimMethod", "", 5, "Region successfully updated and connected to grid."); |
533 | } | 533 | } |
534 | catch (Exception e) | 534 | catch (Exception e) |
535 | { | 535 | { |
536 | OpenSim.Framework.Console.MainConsole.Instance.WriteLine(OpenSim.Framework.Console.LogPriority.LOW,"getRegionPlugin Handle " + kvp.Key + " unable to add new sim: " + e.ToString()); | 536 | OpenSim.Framework.Console.MainConsole.Instance.Verbose("getRegionPlugin Handle " + kvp.Key + " unable to add new sim: " + e.ToString()); |
537 | } | 537 | } |
538 | } | 538 | } |
539 | return "OK"; | 539 | return "OK"; |
diff --git a/OpenGridServices/OpenGridServices.GridServer/Main.cs b/OpenGridServices/OpenGridServices.GridServer/Main.cs index 71f878a..9aabae1 100644 --- a/OpenGridServices/OpenGridServices.GridServer/Main.cs +++ b/OpenGridServices/OpenGridServices.GridServer/Main.cs | |||
@@ -116,17 +116,17 @@ namespace OpenGridServices.GridServer | |||
116 | this.ConfigDB(this.localXMLConfig); | 116 | this.ConfigDB(this.localXMLConfig); |
117 | this.localXMLConfig.Close(); | 117 | this.localXMLConfig.Close(); |
118 | 118 | ||
119 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "Main.cs:Startup() - Loading configuration"); | 119 | m_console.Verbose( "Main.cs:Startup() - Loading configuration"); |
120 | Cfg = this.LoadConfigDll(this.ConfigDll); | 120 | Cfg = this.LoadConfigDll(this.ConfigDll); |
121 | Cfg.InitConfig(); | 121 | Cfg.InitConfig(); |
122 | if (setuponly) Environment.Exit(0); | 122 | if (setuponly) Environment.Exit(0); |
123 | 123 | ||
124 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "Main.cs:Startup() - Connecting to Storage Server"); | 124 | m_console.Verbose( "Main.cs:Startup() - Connecting to Storage Server"); |
125 | m_gridManager = new GridManager(); | 125 | m_gridManager = new GridManager(); |
126 | m_gridManager.AddPlugin(GridDll); // Made of win | 126 | m_gridManager.AddPlugin(GridDll); // Made of win |
127 | m_gridManager.config = Cfg; | 127 | m_gridManager.config = Cfg; |
128 | 128 | ||
129 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "Main.cs:Startup() - Starting HTTP process"); | 129 | m_console.Verbose( "Main.cs:Startup() - Starting HTTP process"); |
130 | BaseHttpServer httpServer = new BaseHttpServer(8001); | 130 | BaseHttpServer httpServer = new BaseHttpServer(8001); |
131 | //GridManagementAgent GridManagerAgent = new GridManagementAgent(httpServer, "gridserver", Cfg.SimSendKey, Cfg.SimRecvKey, managercallback); | 131 | //GridManagementAgent GridManagerAgent = new GridManagementAgent(httpServer, "gridserver", Cfg.SimSendKey, Cfg.SimRecvKey, managercallback); |
132 | 132 | ||
@@ -143,7 +143,7 @@ namespace OpenGridServices.GridServer | |||
143 | // I have no idea what this was supposed to do - looks like an infinite recursion to me. | 143 | // I have no idea what this was supposed to do - looks like an infinite recursion to me. |
144 | // case "regions": | 144 | // case "regions": |
145 | //// DIRTY HACK ALERT | 145 | //// DIRTY HACK ALERT |
146 | //Console.WriteLine("/regions/ accessed"); | 146 | //Console.Notice("/regions/ accessed"); |
147 | //TheSim = OpenGrid_Main.thegrid._regionmanager.GetProfileByHandle((ulong)Convert.ToUInt64(rest_params[1])); | 147 | //TheSim = OpenGrid_Main.thegrid._regionmanager.GetProfileByHandle((ulong)Convert.ToUInt64(rest_params[1])); |
148 | //respstring = ParseREST("/regions/" + rest_params[1], requestBody, HTTPmethod); | 148 | //respstring = ParseREST("/regions/" + rest_params[1], requestBody, HTTPmethod); |
149 | //break; | 149 | //break; |
@@ -155,7 +155,7 @@ namespace OpenGridServices.GridServer | |||
155 | 155 | ||
156 | httpServer.Start(); | 156 | httpServer.Start(); |
157 | 157 | ||
158 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.LOW, "Main.cs:Startup() - Starting sim status checker"); | 158 | m_console.Verbose( "Main.cs:Startup() - Starting sim status checker"); |
159 | 159 | ||
160 | System.Timers.Timer simCheckTimer = new System.Timers.Timer(3600000 * 3); // 3 Hours between updates. | 160 | System.Timers.Timer simCheckTimer = new System.Timers.Timer(3600000 * 3); // 3 Hours between updates. |
161 | simCheckTimer.Elapsed += new ElapsedEventHandler(CheckSims); | 161 | simCheckTimer.Elapsed += new ElapsedEventHandler(CheckSims); |
@@ -232,7 +232,7 @@ namespace OpenGridServices.GridServer | |||
232 | switch (cmd) | 232 | switch (cmd) |
233 | { | 233 | { |
234 | case "help": | 234 | case "help": |
235 | m_console.WriteLine(OpenSim.Framework.Console.LogPriority.HIGH, "shutdown - shutdown the grid (USE CAUTION!)"); | 235 | m_console.Notice("shutdown - shutdown the grid (USE CAUTION!)"); |
236 | break; | 236 | break; |
237 | 237 | ||
238 | case "shutdown": | 238 | case "shutdown": |