diff options
author | Oren Hurvitz | 2014-07-09 12:29:06 +0300 |
---|---|---|
committer | Oren Hurvitz | 2014-07-21 09:18:20 +0100 |
commit | 05cacf6eb6b2276f7130e8b6e2d70f429b7ff230 (patch) | |
tree | ba56a9aa84565bbc065482b366f6b4bf54b1eb37 /OpenSim/Region/CoreModules/World | |
parent | Minor: changed "existant" to "existent" (diff) | |
download | opensim-SC-05cacf6eb6b2276f7130e8b6e2d70f429b7ff230.zip opensim-SC-05cacf6eb6b2276f7130e8b6e2d70f429b7ff230.tar.gz opensim-SC-05cacf6eb6b2276f7130e8b6e2d70f429b7ff230.tar.bz2 opensim-SC-05cacf6eb6b2276f7130e8b6e2d70f429b7ff230.tar.xz |
Eliminated common but un-useful log messages
Diffstat (limited to 'OpenSim/Region/CoreModules/World')
-rw-r--r-- | OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs b/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs index 04e02c7..3af8ac4 100644 --- a/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs +++ b/OpenSim/Region/CoreModules/World/WorldMap/WorldMapModule.cs | |||
@@ -60,7 +60,9 @@ namespace OpenSim.Region.CoreModules.World.WorldMap | |||
60 | public class WorldMapModule : INonSharedRegionModule, IWorldMapModule | 60 | public class WorldMapModule : INonSharedRegionModule, IWorldMapModule |
61 | { | 61 | { |
62 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 62 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
63 | #pragma warning disable 414 | ||
63 | private static string LogHeader = "[WORLD MAP]"; | 64 | private static string LogHeader = "[WORLD MAP]"; |
65 | #pragma warning restore 414 | ||
64 | 66 | ||
65 | private static readonly string DEFAULT_WORLD_MAP_EXPORT_PATH = "exportmap.jpg"; | 67 | private static readonly string DEFAULT_WORLD_MAP_EXPORT_PATH = "exportmap.jpg"; |
66 | private static readonly UUID STOP_UUID = UUID.Random(); | 68 | private static readonly UUID STOP_UUID = UUID.Random(); |
@@ -1048,8 +1050,8 @@ namespace OpenSim.Region.CoreModules.World.WorldMap | |||
1048 | List<GridRegion> regions = m_scene.GridService.GetRegionRange(m_scene.RegionInfo.ScopeID, | 1050 | List<GridRegion> regions = m_scene.GridService.GetRegionRange(m_scene.RegionInfo.ScopeID, |
1049 | (int)Util.RegionToWorldLoc((uint)(minX - 4)), (int)Util.RegionToWorldLoc((uint)(maxX + 4)), | 1051 | (int)Util.RegionToWorldLoc((uint)(minX - 4)), (int)Util.RegionToWorldLoc((uint)(maxX + 4)), |
1050 | (int)Util.RegionToWorldLoc((uint)(minY - 4)), (int)Util.RegionToWorldLoc((uint)(maxY + 4)) ); | 1052 | (int)Util.RegionToWorldLoc((uint)(minY - 4)), (int)Util.RegionToWorldLoc((uint)(maxY + 4)) ); |
1051 | m_log.DebugFormat("{0} GetAndSendBlocks. min=<{1},{2}>, max=<{3},{4}>, cntFound={5}", | 1053 | //m_log.DebugFormat("{0} GetAndSendBlocks. min=<{1},{2}>, max=<{3},{4}>, cntFound={5}", |
1052 | LogHeader, minX, minY, maxX, maxY, regions.Count); | 1054 | // LogHeader, minX, minY, maxX, maxY, regions.Count); |
1053 | foreach (GridRegion r in regions) | 1055 | foreach (GridRegion r in regions) |
1054 | { | 1056 | { |
1055 | // Version 2 viewers can handle the larger regions | 1057 | // Version 2 viewers can handle the larger regions |