diff options
author | Dan Lake | 2011-04-16 15:29:28 -0700 |
---|---|---|
committer | Dan Lake | 2011-04-16 15:29:28 -0700 |
commit | 70084c5e3a34e681357baf5506bd0c8f9815049b (patch) | |
tree | ca56d55c67ff4439cdb0d9fced6c151d8709cdc4 | |
parent | Fixes mantis #5431 -- coalesced objects in HG-enabled regions. Needs more tes... (diff) | |
download | opensim-SC_OLD-70084c5e3a34e681357baf5506bd0c8f9815049b.zip opensim-SC_OLD-70084c5e3a34e681357baf5506bd0c8f9815049b.tar.gz opensim-SC_OLD-70084c5e3a34e681357baf5506bd0c8f9815049b.tar.bz2 opensim-SC_OLD-70084c5e3a34e681357baf5506bd0c8f9815049b.tar.xz |
More descriptive debug msg for ServiceOSDRequest failures.
-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 64cd014..9d70f63 100644 --- a/OpenSim/Framework/WebUtil.cs +++ b/OpenSim/Framework/WebUtil.cs | |||
@@ -222,8 +222,8 @@ namespace OpenSim.Framework | |||
222 | m_log.InfoFormat("[WEB UTIL]: osd request <{0}> (URI:{1}, METHOD:{2}) took {3}ms overall, {4}ms writing", | 222 | m_log.InfoFormat("[WEB UTIL]: osd request <{0}> (URI:{1}, METHOD:{2}) took {3}ms overall, {4}ms writing", |
223 | reqnum,url,method,tickdiff,tickdata); | 223 | reqnum,url,method,tickdiff,tickdata); |
224 | } | 224 | } |
225 | 225 | ||
226 | m_log.WarnFormat("[WEB UTIL] <{0}> osd request failed: {1}",reqnum,errorMessage); | 226 | m_log.WarnFormat("[WEB UTIL]: <{0}> osd request for {1}, method {2} FAILED: {3}", reqnum, url, method, errorMessage); |
227 | return ErrorResponseMap(errorMessage); | 227 | return ErrorResponseMap(errorMessage); |
228 | } | 228 | } |
229 | 229 | ||