Correct some log messages in RegionCombinerModule about the position of the root region of a megaregion relative to an added region
parent
4e5ac27928
commit
d7f90dee1c
|
@ -229,8 +229,6 @@ namespace OpenSim.Region.RegionCombinerModule
|
||||||
westBorder.CrossDirection = Cardinals.W;
|
westBorder.CrossDirection = Cardinals.W;
|
||||||
scene.WestBorders[0] = westBorder;
|
scene.WestBorders[0] = westBorder;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
RegionConnections regionConnections = new RegionConnections();
|
RegionConnections regionConnections = new RegionConnections();
|
||||||
regionConnections.ConnectedRegions = new List<RegionData>();
|
regionConnections.ConnectedRegions = new List<RegionData>();
|
||||||
regionConnections.RegionScene = scene;
|
regionConnections.RegionScene = scene;
|
||||||
|
@ -475,7 +473,7 @@ namespace OpenSim.Region.RegionCombinerModule
|
||||||
conn.UpdateExtents(extents);
|
conn.UpdateExtents(extents);
|
||||||
|
|
||||||
m_log.DebugFormat(
|
m_log.DebugFormat(
|
||||||
"[REGION COMBINER MODULE]: Scene {0} to the west of Scene {1}, Offset: {2}, Extents: {3}",
|
"[REGION COMBINER MODULE]: Root region {0} is to the west of region {1}, Offset: {2}, Extents: {3}",
|
||||||
conn.RegionScene.RegionInfo.RegionName,
|
conn.RegionScene.RegionInfo.RegionName,
|
||||||
regionConnections.RegionScene.RegionInfo.RegionName, offset, extents);
|
regionConnections.RegionScene.RegionInfo.RegionName, offset, extents);
|
||||||
|
|
||||||
|
@ -554,7 +552,7 @@ namespace OpenSim.Region.RegionCombinerModule
|
||||||
conn.ConnectedRegions.Add(ConnectedRegion);
|
conn.ConnectedRegions.Add(ConnectedRegion);
|
||||||
|
|
||||||
m_log.DebugFormat(
|
m_log.DebugFormat(
|
||||||
"[REGION COMBINER MODULE]: Scene: {0} to the northeast of Scene {1}, Offset: {2}, Extents: {3}",
|
"[REGION COMBINER MODULE]: Root region {0} is to the south of region {1}, Offset: {2}, Extents: {3}",
|
||||||
conn.RegionScene.RegionInfo.RegionName,
|
conn.RegionScene.RegionInfo.RegionName,
|
||||||
regionConnections.RegionScene.RegionInfo.RegionName, offset, extents);
|
regionConnections.RegionScene.RegionInfo.RegionName, offset, extents);
|
||||||
|
|
||||||
|
@ -616,7 +614,7 @@ namespace OpenSim.Region.RegionCombinerModule
|
||||||
conn.ConnectedRegions.Add(ConnectedRegion);
|
conn.ConnectedRegions.Add(ConnectedRegion);
|
||||||
|
|
||||||
m_log.DebugFormat(
|
m_log.DebugFormat(
|
||||||
"[REGION COMBINER MODULE]: Scene: {0} to the NorthEast of Scene {1}, Offset: {2}, Extents: {3}",
|
"[REGION COMBINER MODULE]: Region {0} is to the southwest of Scene {1}, Offset: {2}, Extents: {3}",
|
||||||
conn.RegionScene.RegionInfo.RegionName,
|
conn.RegionScene.RegionInfo.RegionName,
|
||||||
regionConnections.RegionScene.RegionInfo.RegionName, offset, extents);
|
regionConnections.RegionScene.RegionInfo.RegionName, offset, extents);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue