diff options
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 | ||