diff options
author | Justin Clark-Casey (justincc) | 2011-11-19 00:29:52 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2011-11-19 00:29:52 +0000 |
commit | d05d065d859c8877cb910cf5748e32e1560086a6 (patch) | |
tree | b4b6d1053da7b49810cdd72ae265e2457d2e43e4 /OpenSim/Services/MapImageService/MapImageService.cs | |
parent | improve region deregistration log message (diff) | |
download | opensim-SC_OLD-d05d065d859c8877cb910cf5748e32e1560086a6.zip opensim-SC_OLD-d05d065d859c8877cb910cf5748e32e1560086a6.tar.gz opensim-SC_OLD-d05d065d859c8877cb910cf5748e32e1560086a6.tar.bz2 opensim-SC_OLD-d05d065d859c8877cb910cf5748e32e1560086a6.tar.xz |
Improve some grid region log messages to express regions at co-ordinate (e.g. 1000, 1000) rather than meter positions (256000, 256000)
Diffstat (limited to 'OpenSim/Services/MapImageService/MapImageService.cs')
-rw-r--r-- | OpenSim/Services/MapImageService/MapImageService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/MapImageService/MapImageService.cs b/OpenSim/Services/MapImageService/MapImageService.cs index 83727b6..a85ee70 100644 --- a/OpenSim/Services/MapImageService/MapImageService.cs +++ b/OpenSim/Services/MapImageService/MapImageService.cs | |||
@@ -208,7 +208,7 @@ namespace OpenSim.Services.MapImageService | |||
208 | 208 | ||
209 | private bool CreateTile(uint zoomLevel, int x, int y) | 209 | private bool CreateTile(uint zoomLevel, int x, int y) |
210 | { | 210 | { |
211 | m_log.DebugFormat("[MAP IMAGE SERVICE]: Create tile for {0} {1}, zoom {2}", x, y, zoomLevel); | 211 | // m_log.DebugFormat("[MAP IMAGE SERVICE]: Create tile for {0} {1}, zoom {2}", x, y, zoomLevel); |
212 | int prevWidth = (int)Math.Pow(2, (double)zoomLevel - 2); | 212 | int prevWidth = (int)Math.Pow(2, (double)zoomLevel - 2); |
213 | int thisWidth = (int)Math.Pow(2, (double)zoomLevel - 1); | 213 | int thisWidth = (int)Math.Pow(2, (double)zoomLevel - 1); |
214 | 214 | ||