aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs6
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
index c469010..66d6b0c 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
@@ -49,7 +49,7 @@ namespace OpenSim.Framework.Servers.HttpServer
49 public class BaseHttpServer : IHttpServer 49 public class BaseHttpServer : IHttpServer
50 { 50 {
51 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); 51 private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
52 private HttpServerLogWriter httpserverlog = new HttpServerLogWriter(); 52// private HttpServerLogWriter httpserverlog = new HttpServerLogWriter();
53 53
54 private volatile int NotSocketErrors = 0; 54 private volatile int NotSocketErrors = 0;
55 public volatile bool HTTPDRunning = false; 55 public volatile bool HTTPDRunning = false;
@@ -1593,7 +1593,9 @@ namespace OpenSim.Framework.Servers.HttpServer
1593 //m_httpListener.Prefixes.Add("http://10.1.1.5:" + m_port + "/"); 1593 //m_httpListener.Prefixes.Add("http://10.1.1.5:" + m_port + "/");
1594 m_httpListener2 = CoolHTTPListener.Create(m_listenIPAddress, (int)m_port); 1594 m_httpListener2 = CoolHTTPListener.Create(m_listenIPAddress, (int)m_port);
1595 m_httpListener2.ExceptionThrown += httpServerException; 1595 m_httpListener2.ExceptionThrown += httpServerException;
1596 m_httpListener2.LogWriter = httpserverlog; 1596
1597 // Uncomment this line (and the httpserverlog field) for HttpServer.dll logging
1598 //m_httpListener2.LogWriter = httpserverlog;
1597 1599
1598 // Uncomment this line in addition to those in HttpServerLogWriter 1600 // Uncomment this line in addition to those in HttpServerLogWriter
1599 // if you want more detailed trace information from the HttpServer 1601 // if you want more detailed trace information from the HttpServer