aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-09-30 01:19:22 +0100
committerJustin Clark-Casey (justincc)2011-09-30 01:19:22 +0100
commite742cffe15d3e50841908d7babc2e4c4a7630635 (patch)
tree9284d6ba2f750b29c965b15f215f77abb34414b1 /OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
parentllAvatarOnLinkSitTarget Implementation (diff)
downloadopensim-SC_OLD-e742cffe15d3e50841908d7babc2e4c4a7630635.zip
opensim-SC_OLD-e742cffe15d3e50841908d7babc2e4c4a7630635.tar.gz
opensim-SC_OLD-e742cffe15d3e50841908d7babc2e4c4a7630635.tar.bz2
opensim-SC_OLD-e742cffe15d3e50841908d7babc2e4c4a7630635.tar.xz
Add Enabled switch in new [Attachments] section in OpenSimDefaults.ini to allow attachments to be temporarily turned off.
This is for debugging purposes. Defaults to Attachments Enabled
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
index af9b62f..fefa242 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
@@ -442,7 +442,7 @@ namespace OpenSim.Framework.Servers.HttpServer
442 string path = request.RawUrl; 442 string path = request.RawUrl;
443 string handlerKey = GetHandlerKey(request.HttpMethod, path); 443 string handlerKey = GetHandlerKey(request.HttpMethod, path);
444 444
445 //m_log.DebugFormat("[BASE HTTP SERVER]: Handling {0} request for {1}", request.HttpMethod, path); 445// m_log.DebugFormat("[BASE HTTP SERVER]: Handling {0} request for {1}", request.HttpMethod, path);
446 446
447 if (TryGetStreamHandler(handlerKey, out requestHandler)) 447 if (TryGetStreamHandler(handlerKey, out requestHandler))
448 { 448 {