aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
index 1d35b1a..b3e31a6 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
@@ -728,14 +728,14 @@ namespace OpenSim.Framework.Servers.HttpServer
728 const int sampleLength = 80; 728 const int sampleLength = 80;
729 char[] sampleChars = new char[sampleLength]; 729 char[] sampleChars = new char[sampleLength];
730 reader.Read(sampleChars, 0, sampleLength); 730 reader.Read(sampleChars, 0, sampleLength);
731 output = string.Format("[BASE HTTP SERVER]: {0}...", new string(sampleChars).Replace("\n", @"\n")); 731 output = new string(sampleChars);
732 } 732 }
733 else 733 else
734 { 734 {
735 output = string.Format("[BASE HTTP SERVER]: {0}", reader.ReadToEnd()); 735 output = reader.ReadToEnd();
736 } 736 }
737 737
738 m_log.Debug(output); 738 m_log.DebugFormat("[BASE HTTP SERVER]: {0}...", output.Replace("\n", @"\n"));
739 } 739 }
740 } 740 }
741 741