Fix bug in logging sample input at debug http level 4.

Also converts newlines to "\n" text.
integration
Justin Clark-Casey (justincc) 2012-09-12 23:01:07 +01:00
parent 224efe7b76
commit 7df7b86ec5
1 changed files with 1 additions and 1 deletions

View File

@ -687,7 +687,7 @@ namespace OpenSim.Framework.Servers.HttpServer
const int sampleLength = 80;
char[] sampleChars = new char[sampleLength];
reader.Read(sampleChars, 0, sampleLength);
output = string.Format("[BASE HTTP SERVER]: {0}...", sampleChars);
output = string.Format("[BASE HTTP SERVER]: {0}...", new string(sampleChars).Replace("\n", @"\n"));
}
else
{