diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-08-30 17:36:03 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-08-30 17:36:03 -0400 |
commit | 825cc7873251ad90720ab40221d689abed7b2ac8 (patch) | |
tree | 0f8832bae34b00bdee549bc6954317dca7da2f00 | |
parent | 6f30e1f4525723df6ecd0c30522d6c85cf748a7b (diff) |
log appearance update requests and results
-rwxr-xr-x | indra/newview/llappearancemgr.cpp | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp index 2864338ef5..f71d9c7704 100755 --- a/indra/newview/llappearancemgr.cpp +++ b/indra/newview/llappearancemgr.cpp @@ -2651,7 +2651,18 @@ void LLAppearanceMgr::updateClothingOrderingInfo(LLUUID cat_id, bool update_base class RequestAgentUpdateAppearanceResponder: public LLHTTPClient::Responder { public: - RequestAgentUpdateAppearanceResponder() {} + RequestAgentUpdateAppearanceResponder() + { + llinfos << "request created" << llendl; + } + + // Successful completion. + /* virtual */ void result(const LLSD& content) + { + llinfos << "request OK" << llendl; + } + + // Error /*virtual*/ void error(U32 status, const std::string& reason) { llwarns << "appearance update request failed, reason: " << reason << llendl; |