summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2013-06-27 16:15:47 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2013-06-27 16:15:47 -0400
commit62a6009fa265cd56c8711300a830446b03532785 (patch)
tree36ae7ea4947b014a0cf88abde12889cd5c66218a /indra
parent1c0c8a8a20febe721787640e40a66aa02bbf8011 (diff)
Log slamming calls
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/llviewerinventory.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llviewerinventory.cpp b/indra/newview/llviewerinventory.cpp
index 9725ea6456..c934dd991b 100755
--- a/indra/newview/llviewerinventory.cpp
+++ b/indra/newview/llviewerinventory.cpp
@@ -1567,11 +1567,15 @@ void slam_inventory_folder(const LLUUID& folder_id,
std::string cap;
if (AISCommand::getCap(cap))
{
+ LL_DEBUGS("Avatar") << "using AISv3 to slam folder, id " << folder_id
+ << " new contents: " << ll_pretty_print_sd(contents) << llendl;
LLPointer<AISCommand> cmd_ptr = new SlamFolderCommand(folder_id, contents, cb);
cmd_ptr->run_command();
}
else // no cap
{
+ LL_DEBUGS("Avatar") << "using item-by-item calls to slam folder, id " << folder_id
+ << " new contents: " << ll_pretty_print_sd(contents) << llendl;
for (LLSD::array_const_iterator it = contents.beginArray();
it != contents.endArray();
++it)