aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Communications
diff options
context:
space:
mode:
authorCharles Krinke2007-12-24 19:13:01 +0000
committerCharles Krinke2007-12-24 19:13:01 +0000
commitedf6f9e573844b617a05c6bd4c841aed31b44641 (patch)
tree122a7b5f8ecbb01517e77e731dd6d3a467e70804 /OpenSim/Region/Communications
parentAdded regionName to "far away" region report. (diff)
downloadopensim-SC_OLD-edf6f9e573844b617a05c6bd4c841aed31b44641.zip
opensim-SC_OLD-edf6f9e573844b617a05c6bd4c841aed31b44641.tar.gz
opensim-SC_OLD-edf6f9e573844b617a05c6bd4c841aed31b44641.tar.bz2
opensim-SC_OLD-edf6f9e573844b617a05c6bd4c841aed31b44641.tar.xz
Go back to displaying the X,Y and not the regionName until
SearializableRegionInfo is a bit more understood. This is only a mainlog message.
Diffstat (limited to 'OpenSim/Region/Communications')
-rw-r--r--OpenSim/Region/Communications/OGS1/OGS1GridServices.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
index c38de7b..26dbf0e 100644
--- a/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
+++ b/OpenSim/Region/Communications/OGS1/OGS1GridServices.cs
@@ -961,8 +961,14 @@ namespace OpenSim.Region.Communications.OGS1
961 961
962 public bool TriggerRegionUp(SearializableRegionInfo regionData, ulong regionhandle) 962 public bool TriggerRegionUp(SearializableRegionInfo regionData, ulong regionhandle)
963 { 963 {
964 MainLog.Instance.Verbose("INTER", gdebugRegionName + "Incoming OGS1 RegionUpReport: " + 964 //CFK: I need a little help here as I would like to display the regionName along with the X,Y location
965 regionData.regionName + " (" + regionData.RegionLocX + "," + regionData.RegionLocY + ")" ); 965 //CFL: but when run, I get an exception that m_regionName is not found in SearializableRegionInfo even
966 //CFK: though I believe I defined it correctly. I suspect that the class RegionInfo is perhaps biting
967 //CFK: me and hope someone can add clarity to my thoughts.
968 //CFK: MainLog.Instance.Verbose("INTER", gdebugRegionName + "Incoming OGS1 RegionUpReport: " +
969 //CFK: regionData.regionName + " (" + regionData.RegionLocX + "," + regionData.RegionLocY + ")");
970
971 MainLog.Instance.Verbose("INTER", gdebugRegionName + "Incoming OGS1 RegionUpReport: " + "(" + regionData.RegionLocX + "," + regionData.RegionLocY + ")");
966 972
967 try 973 try
968 { 974 {