minor: If logging full incoming HTTP data, don't deceptively print ... at the end of the body.
							parent
							
								
									41b76c4b9e
								
							
						
					
					
						commit
						ee5e61d448
					
				|  | @ -719,8 +719,11 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
|                 if (DebugLevel == 5) | ||||
|                 { | ||||
|                     const int sampleLength = 80; | ||||
|                     char[] sampleChars = new char[sampleLength]; | ||||
|                     char[] sampleChars = new char[sampleLength + 3]; | ||||
|                     reader.Read(sampleChars, 0, sampleLength); | ||||
|                     sampleChars[80] = '.'; | ||||
|                     sampleChars[81] = '.'; | ||||
|                     sampleChars[82] = '.'; | ||||
|                     output = new string(sampleChars); | ||||
|                 } | ||||
|                 else | ||||
|  | @ -728,7 +731,7 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
|                     output = reader.ReadToEnd(); | ||||
|                 } | ||||
| 
 | ||||
|                 m_log.DebugFormat("[BASE HTTP SERVER]: {0}...", output.Replace("\n", @"\n")); | ||||
|                 m_log.DebugFormat("[BASE HTTP SERVER]: {0}", output.Replace("\n", @"\n")); | ||||
|             } | ||||
|         } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	 Justin Clark-Casey (justincc)
						Justin Clark-Casey (justincc)