comment some debug msgs

0.9.1.0-post-fixes
UbitUmarov 2018-12-01 23:17:45 +00:00
parent 4ced4fed33
commit 8c80572b02
1 changed files with 3 additions and 3 deletions

View File

@ -124,7 +124,7 @@ namespace OpenSim.Capabilities.Handlers
AssetBase asset = m_assetService.Get(assetID.ToString());
if(asset == null)
{
m_log.Warn("[GETASSET]: not found: " + query + " " + assetStr);
// m_log.Warn("[GETASSET]: not found: " + query + " " + assetStr);
responsedata["int_response_code"] = (int)System.Net.HttpStatusCode.NotFound;
responsedata["str_response_string"] = "Asset not found.";
return responsedata;
@ -136,8 +136,8 @@ namespace OpenSim.Capabilities.Handlers
return responsedata;
}
if(type != AssetType.Mesh && type != AssetType.Texture)
m_log.Warn("[GETASSETS]: type: " + query);
// if(type != AssetType.Mesh && type != AssetType.Texture)
// m_log.Warn("[GETASSETS]: type: " + query);
string range = String.Empty;
if (((Hashtable)request["headers"])["range"] != null)