summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2013-05-10 09:19:34 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2013-05-10 09:19:34 -0400
commit43224062a64cc658d429e434a7b673fac0b7c012 (patch)
treeb6660cff62dcb1c6e7392531a367124be515032d /indra
parent55e686b0e305fa14ae5e40f7917f0ce3f3e3c6a1 (diff)
SH-4176 WIP - avoid raw dump of whole error contents in log file
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/llappearancemgr.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp
index e8bdb0d7ec..3c141aa37a 100755
--- a/indra/newview/llappearancemgr.cpp
+++ b/indra/newview/llappearancemgr.cpp
@@ -2905,15 +2905,14 @@ protected:
// Error
/*virtual*/ void httpFailure()
{
- const LLSD& content = getContent();
- LL_WARNS("Avatar") << "appearance update request failed "
- << dumpResponse() << LL_ENDL;
+ LL_WARNS("Avatar") << "appearance update request failed, status "
+ << getStatus() << " reason " << getReason() << LL_ENDL;
if (gSavedSettings.getBOOL("DebugAvatarAppearanceMessage"))
{
+ const LLSD& content = getContent();
dumpContents(gAgentAvatarp->getFullname() + "_appearance_request_error", content);
debugCOF(content);
-
}
onFailure();
}