aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/WebUtil.cs
diff options
context:
space:
mode:
authorDiva Canto2013-07-04 13:13:52 -0700
committerDiva Canto2013-07-04 13:13:52 -0700
commitc95a23863ab51810ccc01afd3dd641c18a183305 (patch)
tree7e517581b58c02bdc9e599dee14808e420d0270c /OpenSim/Framework/WebUtil.cs
parentRevert "Same freeze issue, now checking if it's in estate" (diff)
downloadopensim-SC_OLD-c95a23863ab51810ccc01afd3dd641c18a183305.zip
opensim-SC_OLD-c95a23863ab51810ccc01afd3dd641c18a183305.tar.gz
opensim-SC_OLD-c95a23863ab51810ccc01afd3dd641c18a183305.tar.bz2
opensim-SC_OLD-c95a23863ab51810ccc01afd3dd641c18a183305.tar.xz
WARNING: BRUTE FORCE DEBUG. AVOID USING THIS COMMIT.
Diffstat (limited to 'OpenSim/Framework/WebUtil.cs')
-rw-r--r--OpenSim/Framework/WebUtil.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Framework/WebUtil.cs b/OpenSim/Framework/WebUtil.cs
index 6fb1e0c..ece3129 100644
--- a/OpenSim/Framework/WebUtil.cs
+++ b/OpenSim/Framework/WebUtil.cs
@@ -1061,6 +1061,7 @@ namespace OpenSim.Framework
1061 1061
1062 int tickdiff = Util.EnvironmentTickCountSubtract(tickstart); 1062 int tickdiff = Util.EnvironmentTickCountSubtract(tickstart);
1063 if (tickdiff > WebUtil.LongCallTime) 1063 if (tickdiff > WebUtil.LongCallTime)
1064 {
1064 m_log.InfoFormat( 1065 m_log.InfoFormat(
1065 "[FORMS]: Slow request {0} {1} {2} took {3}ms, {4}ms writing, {5}", 1066 "[FORMS]: Slow request {0} {1} {2} took {3}ms, {4}ms writing, {5}",
1066 reqnum, 1067 reqnum,
@@ -1069,6 +1070,9 @@ namespace OpenSim.Framework
1069 tickdiff, 1070 tickdiff,
1070 tickdata, 1071 tickdata,
1071 obj.Length > WebUtil.MaxRequestDiagLength ? obj.Remove(WebUtil.MaxRequestDiagLength) : obj); 1072 obj.Length > WebUtil.MaxRequestDiagLength ? obj.Remove(WebUtil.MaxRequestDiagLength) : obj);
1073 Util.PrintCallStack();
1074
1075 }
1072 else if (WebUtil.DebugLevel >= 4) 1076 else if (WebUtil.DebugLevel >= 4)
1073 m_log.DebugFormat( 1077 m_log.DebugFormat(
1074 "[WEB UTIL]: HTTP OUT {0} took {1}ms, {2}ms writing", 1078 "[WEB UTIL]: HTTP OUT {0} took {1}ms, {2}ms writing",