diff options
author | UbitUmarov | 2018-12-01 23:17:45 +0000 |
---|---|---|
committer | UbitUmarov | 2018-12-01 23:17:45 +0000 |
commit | 8c80572b026faa832c631f684b4cd7b04ce140e7 (patch) | |
tree | 9b4180d4f9b37b73f86a83364111fbb7625e0ace /OpenSim/Capabilities/Handlers/GetAssets/GetAssetsHandler.cs | |
parent | replace GetMeshModule and GetTextureModule (diff) | |
download | opensim-SC-8c80572b026faa832c631f684b4cd7b04ce140e7.zip opensim-SC-8c80572b026faa832c631f684b4cd7b04ce140e7.tar.gz opensim-SC-8c80572b026faa832c631f684b4cd7b04ce140e7.tar.bz2 opensim-SC-8c80572b026faa832c631f684b4cd7b04ce140e7.tar.xz |
comment some debug msgs
Diffstat (limited to 'OpenSim/Capabilities/Handlers/GetAssets/GetAssetsHandler.cs')
-rw-r--r-- | OpenSim/Capabilities/Handlers/GetAssets/GetAssetsHandler.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Capabilities/Handlers/GetAssets/GetAssetsHandler.cs b/OpenSim/Capabilities/Handlers/GetAssets/GetAssetsHandler.cs index 1f4e4dd..92608a6 100644 --- a/OpenSim/Capabilities/Handlers/GetAssets/GetAssetsHandler.cs +++ b/OpenSim/Capabilities/Handlers/GetAssets/GetAssetsHandler.cs | |||
@@ -124,7 +124,7 @@ namespace OpenSim.Capabilities.Handlers | |||
124 | AssetBase asset = m_assetService.Get(assetID.ToString()); | 124 | AssetBase asset = m_assetService.Get(assetID.ToString()); |
125 | if(asset == null) | 125 | if(asset == null) |
126 | { | 126 | { |
127 | m_log.Warn("[GETASSET]: not found: " + query + " " + assetStr); | 127 | // m_log.Warn("[GETASSET]: not found: " + query + " " + assetStr); |
128 | responsedata["int_response_code"] = (int)System.Net.HttpStatusCode.NotFound; | 128 | responsedata["int_response_code"] = (int)System.Net.HttpStatusCode.NotFound; |
129 | responsedata["str_response_string"] = "Asset not found."; | 129 | responsedata["str_response_string"] = "Asset not found."; |
130 | return responsedata; | 130 | return responsedata; |
@@ -136,8 +136,8 @@ namespace OpenSim.Capabilities.Handlers | |||
136 | return responsedata; | 136 | return responsedata; |
137 | } | 137 | } |
138 | 138 | ||
139 | if(type != AssetType.Mesh && type != AssetType.Texture) | 139 | // if(type != AssetType.Mesh && type != AssetType.Texture) |
140 | m_log.Warn("[GETASSETS]: type: " + query); | 140 | // m_log.Warn("[GETASSETS]: type: " + query); |
141 | 141 | ||
142 | string range = String.Empty; | 142 | string range = String.Empty; |
143 | if (((Hashtable)request["headers"])["range"] != null) | 143 | if (((Hashtable)request["headers"])["range"] != null) |