diff options
Diffstat (limited to 'OpenSim/Framework/WebUtil.cs')
-rw-r--r-- | OpenSim/Framework/WebUtil.cs | 4 |
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", |