aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/World/LegacyMap/TexturedMapTileRenderer.cs
diff options
context:
space:
mode:
authorDiva Canto2012-04-23 21:29:18 -0700
committerDiva Canto2012-04-23 21:29:18 -0700
commitfd279889788420a63d7454833ab33cb4060edf38 (patch)
tree7d5bf82cfb2e94de09bc407e8fcad4195d4b0b7a /OpenSim/Region/CoreModules/World/LegacyMap/TexturedMapTileRenderer.cs
parentAdd online/offline indicator to "friends show" region console command. (diff)
downloadopensim-SC_OLD-fd279889788420a63d7454833ab33cb4060edf38.zip
opensim-SC_OLD-fd279889788420a63d7454833ab33cb4060edf38.tar.gz
opensim-SC_OLD-fd279889788420a63d7454833ab33cb4060edf38.tar.bz2
opensim-SC_OLD-fd279889788420a63d7454833ab33cb4060edf38.tar.xz
Changed the Map-related messages from Info to Debug. They're debug messages.
Diffstat (limited to 'OpenSim/Region/CoreModules/World/LegacyMap/TexturedMapTileRenderer.cs')
-rw-r--r--OpenSim/Region/CoreModules/World/LegacyMap/TexturedMapTileRenderer.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/World/LegacyMap/TexturedMapTileRenderer.cs b/OpenSim/Region/CoreModules/World/LegacyMap/TexturedMapTileRenderer.cs
index 1d2141e..d13c2ef 100644
--- a/OpenSim/Region/CoreModules/World/LegacyMap/TexturedMapTileRenderer.cs
+++ b/OpenSim/Region/CoreModules/World/LegacyMap/TexturedMapTileRenderer.cs
@@ -278,7 +278,7 @@ namespace OpenSim.Region.CoreModules.World.LegacyMap
278 public void TerrainToBitmap(Bitmap mapbmp) 278 public void TerrainToBitmap(Bitmap mapbmp)
279 { 279 {
280 int tc = Environment.TickCount; 280 int tc = Environment.TickCount;
281 m_log.Info("[MAPTILE]: Generating Maptile Step 1: Terrain"); 281 m_log.Debug("[MAPTILE]: Generating Maptile Step 1: Terrain");
282 282
283 // These textures should be in the AssetCache anyway, as every client conneting to this 283 // These textures should be in the AssetCache anyway, as every client conneting to this
284 // region needs them. Except on start, when the map is recreated (before anyone connected), 284 // region needs them. Except on start, when the map is recreated (before anyone connected),
@@ -412,7 +412,7 @@ namespace OpenSim.Region.CoreModules.World.LegacyMap
412 } 412 }
413 } 413 }
414 } 414 }
415 m_log.Info("[MAPTILE]: Generating Maptile Step 1: Done in " + (Environment.TickCount - tc) + " ms"); 415 m_log.Debug("[MAPTILE]: Generating Maptile Step 1: Done in " + (Environment.TickCount - tc) + " ms");
416 } 416 }
417 } 417 }
418} 418}