* minor: Print out uptime as well as stats in periodic diagnostics logging, so it's easier to tell which isntances each print out of information is from

This commit is contained in:
Justin Clarke Casey
2008-06-13 16:58:24 +00:00
parent 34746f5485
commit b799031010
2 changed files with 30 additions and 6 deletions

View File

@@ -558,7 +558,9 @@ namespace OpenSim.Framework.Servers
Encoding encoding = Encoding.UTF8;
StreamReader reader = new StreamReader(requestStream, encoding);
string requestBody = reader.ReadToEnd();
//string requestBody = reader.ReadToEnd();
// avoid warning for now
reader.ReadToEnd();
reader.Close();
requestStream.Close();