diff options
author | Diva Canto | 2011-05-14 13:09:59 -0700 |
---|---|---|
committer | Diva Canto | 2011-05-14 13:09:59 -0700 |
commit | be6feff331a97b1e976ca52aa0012f24c837e5d6 (patch) | |
tree | dd2c612597d0fdd564227ab2345bb9bc0d7079c3 /OpenSim/Framework/WebUtil.cs | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-be6feff331a97b1e976ca52aa0012f24c837e5d6.zip opensim-SC_OLD-be6feff331a97b1e976ca52aa0012f24c837e5d6.tar.gz opensim-SC_OLD-be6feff331a97b1e976ca52aa0012f24c837e5d6.tar.bz2 opensim-SC_OLD-be6feff331a97b1e976ca52aa0012f24c837e5d6.tar.xz |
Also changed a couple of messages in WebUtil from Wanr/Info to Debug.
Diffstat (limited to 'OpenSim/Framework/WebUtil.cs')
-rw-r--r-- | OpenSim/Framework/WebUtil.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/WebUtil.cs b/OpenSim/Framework/WebUtil.cs index 5628376..9323607 100644 --- a/OpenSim/Framework/WebUtil.cs +++ b/OpenSim/Framework/WebUtil.cs | |||
@@ -251,11 +251,11 @@ namespace OpenSim.Framework | |||
251 | // This just dumps a warning for any operation that takes more than 100 ms | 251 | // This just dumps a warning for any operation that takes more than 100 ms |
252 | int tickdiff = Util.EnvironmentTickCountSubtract(tickstart); | 252 | int tickdiff = Util.EnvironmentTickCountSubtract(tickstart); |
253 | if (tickdiff > LongCallTime) | 253 | if (tickdiff > LongCallTime) |
254 | m_log.InfoFormat("[WEB UTIL]: osd request <{0}> (URI:{1}, METHOD:{2}) took {3}ms overall, {4}ms writing", | 254 | m_log.DebugFormat("[WEB UTIL]: osd request <{0}> (URI:{1}, METHOD:{2}) took {3}ms overall, {4}ms writing", |
255 | reqnum,url,method,tickdiff,tickdata); | 255 | reqnum,url,method,tickdiff,tickdata); |
256 | } | 256 | } |
257 | 257 | ||
258 | m_log.WarnFormat("[WEB UTIL]: <{0}> osd request for {1}, method {2} FAILED: {3}", reqnum, url, method, errorMessage); | 258 | m_log.DebugFormat("[WEB UTIL]: <{0}> osd request for {1}, method {2} FAILED: {3}", reqnum, url, method, errorMessage); |
259 | return ErrorResponseMap(errorMessage); | 259 | return ErrorResponseMap(errorMessage); |
260 | } | 260 | } |
261 | 261 | ||