diff options
author | Justin Clarke Casey | 2008-06-13 16:58:24 +0000 |
---|---|---|
committer | Justin Clarke Casey | 2008-06-13 16:58:24 +0000 |
commit | b799031010b978e3edaf9f128e31b498cff72afc (patch) | |
tree | 15f752be86885f68e21861865d33f3a4569bf21d /OpenSim/Framework/Servers/BaseHttpServer.cs | |
parent | * Double timeout on region registration XMLRPC call to the grid service (diff) | |
download | opensim-SC_OLD-b799031010b978e3edaf9f128e31b498cff72afc.zip opensim-SC_OLD-b799031010b978e3edaf9f128e31b498cff72afc.tar.gz opensim-SC_OLD-b799031010b978e3edaf9f128e31b498cff72afc.tar.bz2 opensim-SC_OLD-b799031010b978e3edaf9f128e31b498cff72afc.tar.xz |
* 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
Diffstat (limited to 'OpenSim/Framework/Servers/BaseHttpServer.cs')
-rw-r--r-- | OpenSim/Framework/Servers/BaseHttpServer.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/BaseHttpServer.cs b/OpenSim/Framework/Servers/BaseHttpServer.cs index ce351ca..a69cb63 100644 --- a/OpenSim/Framework/Servers/BaseHttpServer.cs +++ b/OpenSim/Framework/Servers/BaseHttpServer.cs | |||
@@ -558,7 +558,9 @@ namespace OpenSim.Framework.Servers | |||
558 | Encoding encoding = Encoding.UTF8; | 558 | Encoding encoding = Encoding.UTF8; |
559 | StreamReader reader = new StreamReader(requestStream, encoding); | 559 | StreamReader reader = new StreamReader(requestStream, encoding); |
560 | 560 | ||
561 | string requestBody = reader.ReadToEnd(); | 561 | //string requestBody = reader.ReadToEnd(); |
562 | // avoid warning for now | ||
563 | reader.ReadToEnd(); | ||
562 | reader.Close(); | 564 | reader.Close(); |
563 | requestStream.Close(); | 565 | requestStream.Close(); |
564 | 566 | ||