summaryrefslogtreecommitdiff
path: root/indra/newview/llinventorymodel.cpp
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2013-06-05 15:52:44 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2013-06-05 15:52:44 -0400
commitca806315a98627b29a4933cbf8b27431ca43dd0f (patch)
treeedb7b4576f02c9b678b5147cd34822f77e060816 /indra/newview/llinventorymodel.cpp
parentf7c9739fd9bb4355765ecff4b92e879b38302e49 (diff)
SH-3635 WIP - logging cleanup, moved some big dumps into separate XML files
Diffstat (limited to 'indra/newview/llinventorymodel.cpp')
-rwxr-xr-xindra/newview/llinventorymodel.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/indra/newview/llinventorymodel.cpp b/indra/newview/llinventorymodel.cpp
index 1a5e76183c..c0c48d6695 100755
--- a/indra/newview/llinventorymodel.cpp
+++ b/indra/newview/llinventorymodel.cpp
@@ -1170,7 +1170,10 @@ void parse_llsd_uuid_array(const LLSD& content, const std::string& name, uuid_ve
void LLInventoryModel::onAISUpdateReceived(const std::string& context, const LLSD& update)
{
- LL_DEBUGS("Inventory") << "ais update " << context << ":" << ll_pretty_print_sd(update) << llendl;
+ if (gSavedSettings.getBOOL("DebugAvatarAppearanceMessage"))
+ {
+ dump_sequential_xml(gAgentAvatarp->getFullname() + "_ais_update", update);
+ }
// Track changes to descendent counts for accounting.
std::map<LLUUID,S32> cat_deltas;