diff options
author | Diva Canto | 2016-06-22 15:28:18 -0700 |
---|---|---|
committer | Diva Canto | 2016-06-22 15:28:18 -0700 |
commit | 193a3afa6499c69447710f8d9c45a9263223529c (patch) | |
tree | 5747a7fe2bf5bda0bbcdf984439278b2bd35da6d | |
parent | Mantis #7935: regression on transferring attachments over the HG (diff) | |
download | opensim-SC_OLD-193a3afa6499c69447710f8d9c45a9263223529c.zip opensim-SC_OLD-193a3afa6499c69447710f8d9c45a9263223529c.tar.gz opensim-SC_OLD-193a3afa6499c69447710f8d9c45a9263223529c.tar.bz2 opensim-SC_OLD-193a3afa6499c69447710f8d9c45a9263223529c.tar.xz |
Make a debug message less misleading.
-rw-r--r-- | OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RemoteGridServiceConnector.cs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RemoteGridServiceConnector.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RemoteGridServiceConnector.cs index 950eec6..9e27abe 100644 --- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RemoteGridServiceConnector.cs +++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Grid/RemoteGridServiceConnector.cs | |||
@@ -219,9 +219,12 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Grid | |||
219 | rinfo = m_RemoteGridService.GetRegionByPosition(scopeID, x, y); | 219 | rinfo = m_RemoteGridService.GetRegionByPosition(scopeID, x, y); |
220 | 220 | ||
221 | m_RegionInfoCache.Cache(rinfo); | 221 | m_RegionInfoCache.Cache(rinfo); |
222 | 222 | ||
223 | m_log.DebugFormat("[REMOTE GRID CONNECTOR]: GetRegionByPosition. Added region {0} to the cache. Pos=<{1},{2}>, RegionHandle={3}", | 223 | if (rinfo == null) |
224 | (rinfo == null) ? "<missing>" : rinfo.RegionName, regionX, regionY, (rinfo == null) ? regionHandle : rinfo.RegionHandle); | 224 | m_log.WarnFormat("[REMOTE GRID CONNECTOR]: Requested region {0}-{1} not found", regionX, regionY); |
225 | else | ||
226 | m_log.DebugFormat("[REMOTE GRID CONNECTOR]: GetRegionByPosition. Added region {0} to the cache. Pos=<{1},{2}>, RegionHandle={3}", | ||
227 | rinfo.RegionName, rinfo.RegionCoordX, rinfo.RegionCoordY, (rinfo == null) ? regionHandle : rinfo.RegionHandle); | ||
225 | 228 | ||
226 | return rinfo; | 229 | return rinfo; |
227 | } | 230 | } |