Fix multi, and single tenancy on MapGet

0.9.1.0-post-fixes
root 2019-03-11 23:38:57 +00:00
parent e877c94b51
commit c3f9b1568c
1 changed files with 2 additions and 2 deletions

View File

@ -239,7 +239,7 @@ namespace OpenSim.Services.MapImageService
public byte[] GetMapTile(string fileName, UUID scopeID, out string format) 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"; format = ".jpg";
string fullName = Path.Combine(m_TilesStoragePath, scopeID.ToString()); string fullName = Path.Combine(m_TilesStoragePath, scopeID.ToString());
@ -256,7 +256,7 @@ namespace OpenSim.Services.MapImageService
} }
else 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]; return new byte[0];
} }
} }