diff options
Diffstat (limited to 'OpenSim/Framework/Servers/HttpServer')
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs index c81e283..43a19fa 100644 --- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs | |||
@@ -687,7 +687,7 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
687 | const int sampleLength = 80; | 687 | const int sampleLength = 80; |
688 | char[] sampleChars = new char[sampleLength]; | 688 | char[] sampleChars = new char[sampleLength]; |
689 | reader.Read(sampleChars, 0, sampleLength); | 689 | reader.Read(sampleChars, 0, sampleLength); |
690 | output = string.Format("[BASE HTTP SERVER]: {0}...", sampleChars); | 690 | output = string.Format("[BASE HTTP SERVER]: {0}...", new string(sampleChars).Replace("\n", @"\n")); |
691 | } | 691 | } |
692 | else | 692 | else |
693 | { | 693 | { |