aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2011-01-19 01:13:10 +0000
committerJustin Clark-Casey (justincc)2011-01-19 01:13:10 +0000
commita42faca5b92f5c17c16b79fcf0df446d1aa08ae1 (patch)
treed7212023df98c6be68a6caf2b7776a1c9c360ffa /OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
parentDowngrade and comment out some other caps messages for now (diff)
downloadopensim-SC_OLD-a42faca5b92f5c17c16b79fcf0df446d1aa08ae1.zip
opensim-SC_OLD-a42faca5b92f5c17c16b79fcf0df446d1aa08ae1.tar.gz
opensim-SC_OLD-a42faca5b92f5c17c16b79fcf0df446d1aa08ae1.tar.bz2
opensim-SC_OLD-a42faca5b92f5c17c16b79fcf0df446d1aa08ae1.tar.xz
With mic's permission, adjust long call time info messages to 500ms from 200ms
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
index 86ad7aa..d4ee7ba 100644
--- a/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/HttpServer/BaseHttpServer.cs
@@ -587,8 +587,9 @@ namespace OpenSim.Framework.Servers.HttpServer
587 // Every month or so this will wrap and give bad numbers, not really a problem 587 // Every month or so this will wrap and give bad numbers, not really a problem
588 // since its just for reporting, 200ms limit can be adjusted 588 // since its just for reporting, 200ms limit can be adjusted
589 int tickdiff = Environment.TickCount - tickstart; 589 int tickdiff = Environment.TickCount - tickstart;
590 if (tickdiff > 200) 590 if (tickdiff > 500)
591 m_log.InfoFormat("[BASE HTTP SERVER]: slow request <{0}> for {1} took {2} ms",reqnum,request.RawUrl,tickdiff); 591 m_log.InfoFormat(
592 "[BASE HTTP SERVER]: slow request <{0}> for {1} took {2} ms", reqnum, request.RawUrl, tickdiff);
592 } 593 }
593 } 594 }
594 595