Browse Source

Fix multi, and single tenancy on MapGet

root 5 years ago
parent
commit
c3f9b1568c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      OpenSim/Services/MapImageService/MapImageService.cs

+ 2 - 2
OpenSim/Services/MapImageService/MapImageService.cs

@@ -239,7 +239,7 @@ namespace OpenSim.Services.MapImageService
 
         public byte[] GetMapTile(string fileName, UUID scopeID, out string format)
         {
-//            m_log.DebugFormat("[MAP IMAGE SERVICE]: Getting map tile {0}", fileName);
+            //m_log.DebugFormat("[MAP IMAGE SERVICE]: Getting map tile {0}", fileName);
 
             format = ".jpg";
             string fullName = Path.Combine(m_TilesStoragePath, scopeID.ToString());
@@ -256,7 +256,7 @@ namespace OpenSim.Services.MapImageService
             }
             else
             {
-                m_log.DebugFormat("[MAP IMAGE SERVICE]: unable to get file {0}", fileName);
+                //m_log.DebugFormat("[MAP IMAGE SERVICE]: unable to get file {0}", fileName);
                 return new byte[0];
             }
         }