aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules
diff options
context:
space:
mode:
authorDiva Canto2009-10-06 09:54:15 -0700
committerDiva Canto2009-10-06 09:54:15 -0700
commit3db4d38645260b0299e082b47b010dddf569bf31 (patch)
tree818a5b9675fd0cdd300a2660765aa847e6182b4b /OpenSim/Region/CoreModules
parentCorrected words in error message. (diff)
downloadopensim-SC_OLD-3db4d38645260b0299e082b47b010dddf569bf31.zip
opensim-SC_OLD-3db4d38645260b0299e082b47b010dddf569bf31.tar.gz
opensim-SC_OLD-3db4d38645260b0299e082b47b010dddf569bf31.tar.bz2
opensim-SC_OLD-3db4d38645260b0299e082b47b010dddf569bf31.tar.xz
Removing dependencies on System.Runtime.Remoting.
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r--OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs
index 44e850b..6c89ac8 100644
--- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs
+++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RegionCache.cs
@@ -61,6 +61,10 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Grid
61 61
62 private void OnRegionUp(GridRegion otherRegion) 62 private void OnRegionUp(GridRegion otherRegion)
63 { 63 {
64 // This shouldn't happen
65 if (otherRegion == null)
66 return;
67
64 m_log.DebugFormat("[REGION CACHE]: (on region {0}) Region {1} is up @ {2}-{3}", 68 m_log.DebugFormat("[REGION CACHE]: (on region {0}) Region {1} is up @ {2}-{3}",
65 m_scene.RegionInfo.RegionName, otherRegion.RegionName, otherRegion.RegionLocX, otherRegion.RegionLocY); 69 m_scene.RegionInfo.RegionName, otherRegion.RegionName, otherRegion.RegionLocX, otherRegion.RegionLocY);
66 70