diff options
author | Justin Clark-Casey (justincc) | 2012-09-29 02:38:21 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-09-29 02:38:21 +0100 |
commit | f4579527551f474f68f368ffdd0cd0a89d31d504 (patch) | |
tree | f93da602b11cfcd5d910ecfb395f1a5c457d6b04 /OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |
parent | Fire EventManager.TriggerOnAttach (and hence LSL attach event) when an object... (diff) | |
download | opensim-SC-f4579527551f474f68f368ffdd0cd0a89d31d504.zip opensim-SC-f4579527551f474f68f368ffdd0cd0a89d31d504.tar.gz opensim-SC-f4579527551f474f68f368ffdd0cd0a89d31d504.tar.bz2 opensim-SC-f4579527551f474f68f368ffdd0cd0a89d31d504.tar.xz |
Fix bug where debug http level 6 could not be specified. Also converts newlines at this level to '\n' to enable them to be logged.
Diffstat (limited to 'OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs')
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs index d139235..ff57422 100644 --- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |||
@@ -727,14 +727,14 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
727 | const int sampleLength = 80; | 727 | const int sampleLength = 80; |
728 | char[] sampleChars = new char[sampleLength]; | 728 | char[] sampleChars = new char[sampleLength]; |
729 | reader.Read(sampleChars, 0, sampleLength); | 729 | reader.Read(sampleChars, 0, sampleLength); |
730 | output = string.Format("[BASE HTTP SERVER]: {0}...", new string(sampleChars).Replace("\n", @"\n")); | 730 | output = new string(sampleChars); |
731 | } | 731 | } |
732 | else | 732 | else |
733 | { | 733 | { |
734 | output = string.Format("[BASE HTTP SERVER]: {0}", reader.ReadToEnd()); | 734 | output = reader.ReadToEnd(); |
735 | } | 735 | } |
736 | 736 | ||
737 | m_log.Debug(output); | 737 | m_log.DebugFormat("[BASE HTTP SERVER]: {0}...", output.Replace("\n", @"\n")); |
738 | } | 738 | } |
739 | } | 739 | } |
740 | 740 | ||