diff options
author | Oren Hurvitz | 2015-07-22 20:13:53 +0300 |
---|---|---|
committer | Oren Hurvitz | 2015-07-22 20:13:53 +0300 |
commit | 3a2d4c8b055d906b4a790bf1bf9fb1f09f9781ea (patch) | |
tree | fd52b3f754d0e079ff8d7698cb6812eea734613d /OpenSim/Region/CoreModules/Framework | |
parent | Added the thread name to the logs (diff) | |
download | opensim-SC-3a2d4c8b055d906b4a790bf1bf9fb1f09f9781ea.zip opensim-SC-3a2d4c8b055d906b4a790bf1bf9fb1f09f9781ea.tar.gz opensim-SC-3a2d4c8b055d906b4a790bf1bf9fb1f09f9781ea.tar.bz2 opensim-SC-3a2d4c8b055d906b4a790bf1bf9fb1f09f9781ea.tar.xz |
Added logging in places where regions are searched for by their location
This commit also fixes the log message "Region already exists in coordinates <{0},{1}>": it was actually showing the *requested* coordinates, instead of the coordinates of the previously-existing link.
Diffstat (limited to 'OpenSim/Region/CoreModules/Framework')
-rw-r--r-- | OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs index 089bd4f..8a1bf20 100644 --- a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs +++ b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs | |||
@@ -2196,7 +2196,7 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer | |||
2196 | public GridRegion GetRegionContainingWorldLocation(IGridService pGridService, UUID pScopeID, | 2196 | public GridRegion GetRegionContainingWorldLocation(IGridService pGridService, UUID pScopeID, |
2197 | double px, double py, uint pSizeHint) | 2197 | double px, double py, uint pSizeHint) |
2198 | { | 2198 | { |
2199 | m_log.DebugFormat("{0} GetRegionContainingWorldLocation: call, XY=<{1},{2}>", LogHeader, px, py); | 2199 | m_log.DebugFormat("{0} GetRegionContainingWorldLocation: query, loc=<{1},{2}>", LogHeader, px, py); |
2200 | GridRegion ret = null; | 2200 | GridRegion ret = null; |
2201 | const double fudge = 2.0; | 2201 | const double fudge = 2.0; |
2202 | 2202 | ||