diff options
Diffstat (limited to 'OpenSim/Services/Interfaces/IGridService.cs')
-rw-r--r-- | OpenSim/Services/Interfaces/IGridService.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/OpenSim/Services/Interfaces/IGridService.cs b/OpenSim/Services/Interfaces/IGridService.cs index adc32df..ed5189a 100644 --- a/OpenSim/Services/Interfaces/IGridService.cs +++ b/OpenSim/Services/Interfaces/IGridService.cs | |||
@@ -29,9 +29,13 @@ using System; | |||
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using System.Net; | 30 | using System.Net; |
31 | using System.Net.Sockets; | 31 | using System.Net.Sockets; |
32 | using System.Reflection; | ||
33 | |||
32 | using OpenSim.Framework; | 34 | using OpenSim.Framework; |
33 | using OpenMetaverse; | 35 | using OpenMetaverse; |
34 | 36 | ||
37 | using log4net; | ||
38 | |||
35 | namespace OpenSim.Services.Interfaces | 39 | namespace OpenSim.Services.Interfaces |
36 | { | 40 | { |
37 | public interface IGridService | 41 | public interface IGridService |
@@ -119,6 +123,9 @@ namespace OpenSim.Services.Interfaces | |||
119 | 123 | ||
120 | public class GridRegion | 124 | public class GridRegion |
121 | { | 125 | { |
126 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | ||
127 | private static readonly string LogHeader = "[GRID REGION]"; | ||
128 | |||
122 | /// <summary> | 129 | /// <summary> |
123 | /// The port by which http communication occurs with the region | 130 | /// The port by which http communication occurs with the region |
124 | /// </summary> | 131 | /// </summary> |
@@ -420,9 +427,13 @@ namespace OpenSim.Services.Interfaces | |||
420 | 427 | ||
421 | if (kvp.ContainsKey("sizeX")) | 428 | if (kvp.ContainsKey("sizeX")) |
422 | RegionSizeX = Convert.ToInt32((string)kvp["sizeX"]); | 429 | RegionSizeX = Convert.ToInt32((string)kvp["sizeX"]); |
430 | else | ||
431 | RegionSizeX = (int)Constants.RegionSize; | ||
423 | 432 | ||
424 | if (kvp.ContainsKey("sizeY")) | 433 | if (kvp.ContainsKey("sizeY")) |
425 | RegionSizeY = Convert.ToInt32((string)kvp["sizeY"]); | 434 | RegionSizeY = Convert.ToInt32((string)kvp["sizeY"]); |
435 | else | ||
436 | RegionSizeX = (int)Constants.RegionSize; | ||
426 | 437 | ||
427 | if (kvp.ContainsKey("regionName")) | 438 | if (kvp.ContainsKey("regionName")) |
428 | RegionName = (string)kvp["regionName"]; | 439 | RegionName = (string)kvp["regionName"]; |
@@ -471,6 +482,9 @@ namespace OpenSim.Services.Interfaces | |||
471 | 482 | ||
472 | if (kvp.ContainsKey("Token")) | 483 | if (kvp.ContainsKey("Token")) |
473 | Token = kvp["Token"].ToString(); | 484 | Token = kvp["Token"].ToString(); |
485 | |||
486 | m_log.DebugFormat("{0} New GridRegion. id={1}, loc=<{2},{3}>, size=<{4},{5}>", | ||
487 | LogHeader, RegionID, RegionLocX, RegionLocY, RegionSizeX, RegionSizeY); | ||
474 | } | 488 | } |
475 | } | 489 | } |
476 | } | 490 | } |