From b7a0d441a35193cdeb604a491b266d2f54babb7f Mon Sep 17 00:00:00 2001
From: "Brad Payne (Vir Linden)" <vir@lindenlab.com>
Date: Tue, 9 Aug 2016 09:17:37 -0400
Subject: [PATCH] SL-126 - attachment logging under avatar at DEBUG level. Also
 fixed a typo in avatar_lad.xml

---
 indra/newview/character/avatar_lad.xml | 2 +-
 indra/newview/llvoavatar.cpp           | 4 ++--
 indra/newview/llvovolume.cpp           | 3 ++-
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/indra/newview/character/avatar_lad.xml b/indra/newview/character/avatar_lad.xml
index 533ef95d3e2..a9f506d80b3 100644
--- a/indra/newview/character/avatar_lad.xml
+++ b/indra/newview/character/avatar_lad.xml
@@ -871,7 +871,7 @@
          offset="-0.02 0 0" /> 
 		 
         <bone
-         name="mTail55"
+         name="mTail5"
 		 scale ="0 0 0"
          offset="-0.02 0 0" /> 
 		 
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index d3cd85e9f45..b1282fb4de7 100644
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -5606,11 +5606,11 @@ void LLVOAvatar::showAttachmentPosOverrides(bool verbose) const
     {
         std::stringstream ss;
         std::copy(joint_names.begin(), joint_names.end(), std::ostream_iterator<std::string>(ss, ","));
-        LL_INFOS() << getFullname() << " attachment positions defined for joints: " << ss.str() << "\n" << LL_ENDL;
+        LL_DEBUGS("Avatar") << getFullname() << " attachment positions defined for joints: " << ss.str() << "\n" << LL_ENDL;
     }
     else
     {
-        LL_INFOS() << getFullname() << " no attachment positions defined for any joints" << "\n" << LL_ENDL;
+        LL_DEBUGS("Avatar") << getFullname() << " no attachment positions defined for any joints" << "\n" << LL_ENDL;
     }
 
     if (!verbose)
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp
index 465f8fe0d6b..c8e98683aaf 100644
--- a/indra/newview/llvovolume.cpp
+++ b/indra/newview/llvovolume.cpp
@@ -4783,7 +4783,8 @@ void LLVolumeGeometryManager::rebuildGeom(LLSpatialGroup* group)
                 pAvatarVO->addAttachmentPosOverridesForObject(vobj);
 				if (pAvatarVO->isSelf())
 				{
-					//pAvatarVO->showAttachmentPosOverrides();
+                    bool verbose = true;
+					pAvatarVO->showAttachmentPosOverrides(verbose);
 				}
             }
 
-- 
GitLab