aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/GridServer/GridManager.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Grid/GridServer/GridManager.cs')
-rw-r--r--OpenSim/Grid/GridServer/GridManager.cs18
1 files changed, 9 insertions, 9 deletions
diff --git a/OpenSim/Grid/GridServer/GridManager.cs b/OpenSim/Grid/GridServer/GridManager.cs
index 691ed57..404fbdc 100644
--- a/OpenSim/Grid/GridServer/GridManager.cs
+++ b/OpenSim/Grid/GridServer/GridManager.cs
@@ -52,10 +52,10 @@ namespace OpenSim.Grid.GridServer
52 /// <param name="FileName">The filename to the grid server plugin DLL</param> 52 /// <param name="FileName">The filename to the grid server plugin DLL</param>
53 public void AddPlugin(string FileName) 53 public void AddPlugin(string FileName)
54 { 54 {
55 MainLog.Instance.Verbose("Storage: Attempting to load " + FileName); 55 MainLog.Instance.Verbose("DATA", "Attempting to load " + FileName);
56 Assembly pluginAssembly = Assembly.LoadFrom(FileName); 56 Assembly pluginAssembly = Assembly.LoadFrom(FileName);
57 57
58 MainLog.Instance.Verbose("Storage: Found " + pluginAssembly.GetTypes().Length + " interfaces."); 58 MainLog.Instance.Verbose("DATA", "Found " + pluginAssembly.GetTypes().Length + " interfaces.");
59 foreach (Type pluginType in pluginAssembly.GetTypes()) 59 foreach (Type pluginType in pluginAssembly.GetTypes())
60 { 60 {
61 if (!pluginType.IsAbstract) 61 if (!pluginType.IsAbstract)
@@ -69,7 +69,7 @@ namespace OpenSim.Grid.GridServer
69 (IGridData) Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString())); 69 (IGridData) Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString()));
70 plug.Initialise(); 70 plug.Initialise();
71 _plugins.Add(plug.getName(), plug); 71 _plugins.Add(plug.getName(), plug);
72 MainLog.Instance.Verbose("Storage: Added IGridData Interface"); 72 MainLog.Instance.Verbose("DATA", "Added IGridData Interface");
73 } 73 }
74 74
75 typeInterface = null; 75 typeInterface = null;
@@ -83,7 +83,7 @@ namespace OpenSim.Grid.GridServer
83 (ILogData) Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString())); 83 (ILogData) Activator.CreateInstance(pluginAssembly.GetType(pluginType.ToString()));
84 plug.Initialise(); 84 plug.Initialise();
85 _logplugins.Add(plug.getName(), plug); 85 _logplugins.Add(plug.getName(), plug);
86 MainLog.Instance.Verbose("Storage: Added ILogData Interface"); 86 MainLog.Instance.Verbose("DATA", "Added ILogData Interface");
87 } 87 }
88 88
89 typeInterface = null; 89 typeInterface = null;
@@ -469,7 +469,7 @@ namespace OpenSim.Grid.GridServer
469 { 469 {
470 ymax = (Int32) requestData["ymax"]; 470 ymax = (Int32) requestData["ymax"];
471 } 471 }
472 MainLog.Instance.Verbose("World map request for range (" + xmin + "," + ymin + ")..(" + xmax + "," + ymax + ")"); 472 MainLog.Instance.Verbose("MAP", "World map request for range (" + xmin + "," + ymin + ")..(" + xmax + "," + ymax + ")");
473 473
474 XmlRpcResponse response = new XmlRpcResponse(); 474 XmlRpcResponse response = new XmlRpcResponse();
475 Hashtable responseData = new Hashtable(); 475 Hashtable responseData = new Hashtable();
@@ -507,7 +507,7 @@ namespace OpenSim.Grid.GridServer
507 507
508 simProfileList.Add(simProfileBlock); 508 simProfileList.Add(simProfileBlock);
509 } 509 }
510 MainLog.Instance.Verbose("World map request processed, returned " + simProfileList.Count.ToString() + 510 MainLog.Instance.Verbose("MAP", "World map request processed, returned " + simProfileList.Count.ToString() +
511 " region(s) in range via FastMode"); 511 " region(s) in range via FastMode");
512 } 512 }
513 else 513 else
@@ -542,7 +542,7 @@ namespace OpenSim.Grid.GridServer
542 } 542 }
543 } 543 }
544 } 544 }
545 MainLog.Instance.Verbose("World map request processed, returned " + simProfileList.Count.ToString() + 545 MainLog.Instance.Verbose("MAP", "World map request processed, returned " + simProfileList.Count.ToString() +
546 " region(s) in range via Standard Mode"); 546 " region(s) in range via Standard Mode");
547 } 547 }
548 548
@@ -708,7 +708,7 @@ namespace OpenSim.Grid.GridServer
708 708
709 try 709 try
710 { 710 {
711 MainLog.Instance.Verbose("Updating / adding via " + _plugins.Count + " storage provider(s) registered."); 711 MainLog.Instance.Verbose("DATA", "Updating / adding via " + _plugins.Count + " storage provider(s) registered.");
712 foreach (KeyValuePair<string, IGridData> kvp in _plugins) 712 foreach (KeyValuePair<string, IGridData> kvp in _plugins)
713 { 713 {
714 try 714 try
@@ -734,7 +734,7 @@ namespace OpenSim.Grid.GridServer
734 } 734 }
735 catch (Exception e) 735 catch (Exception e)
736 { 736 {
737 MainLog.Instance.Verbose("getRegionPlugin Handle " + kvp.Key + " unable to add new sim: " + 737 MainLog.Instance.Warn("GRID", "getRegionPlugin Handle " + kvp.Key + " unable to add new sim: " +
738 e.ToString()); 738 e.ToString());
739 } 739 }
740 } 740 }