aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-11-29 20:37:03 +0000
committerJustin Clark-Casey (justincc)2011-11-29 20:37:03 +0000
commitfa63054c4f5cf970922c2fef386b084272c5491c (patch)
treef8c8e596a9818a5335ec5fa3c92afa633ac2c4be /OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
parentWith "debug http 1", show the path with the query string instead of just the ... (diff)
downloadopensim-SC_OLD-fa63054c4f5cf970922c2fef386b084272c5491c.zip
opensim-SC_OLD-fa63054c4f5cf970922c2fef386b084272c5491c.tar.gz
opensim-SC_OLD-fa63054c4f5cf970922c2fef386b084272c5491c.tar.bz2
opensim-SC_OLD-fa63054c4f5cf970922c2fef386b084272c5491c.tar.xz
On "show caps", stop excluding the seed cap but do exclude it elsewhere
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
index 7bd1836..6bffba5 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
@@ -903,7 +903,9 @@ namespace OpenSim.Framework.Servers.HttpServer
903 byte[] buf = Encoding.UTF8.GetBytes("Not found"); 903 byte[] buf = Encoding.UTF8.GetBytes("Not found");
904 response.KeepAlive = false; 904 response.KeepAlive = false;
905 905
906 m_log.ErrorFormat("[BASE HTTP SERVER]: Handler not found for http request {0}", request.RawUrl); 906 m_log.ErrorFormat(
907 "[BASE HTTP SERVER]: Handler not found for http request {0} {1}",
908 request.HttpMethod, request.Url.PathAndQuery);
907 909
908 response.SendChunked = false; 910 response.SendChunked = false;
909 response.ContentLength64 = buf.Length; 911 response.ContentLength64 = buf.Length;