diff options
| author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-08-09 09:17:37 -0400 | 
|---|---|---|
| committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2016-08-09 09:17:37 -0400 | 
| commit | b7a0d441a35193cdeb604a491b266d2f54babb7f (patch) | |
| tree | 391738d4f6c31860077db9c5d749ee4cea3dcc82 | |
| parent | ba90b2d3c738378d0d8300ff0a449beb680e7914 (diff) | |
SL-126 - attachment logging under avatar at DEBUG level. Also fixed a typo in avatar_lad.xml
| -rw-r--r-- | indra/newview/character/avatar_lad.xml | 2 | ||||
| -rw-r--r-- | indra/newview/llvoavatar.cpp | 4 | ||||
| -rw-r--r-- | 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 533ef95d3e..a9f506d80b 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 d3cd85e9f4..b1282fb4de 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 465f8fe0d6..c8e98683aa 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);  				}              } | 
