SH-2689 FIX - a bit more logging and related cleanup. Somewhat arbitrarily calling this done, although tweaks will be ongoing

master
Brad Payne (Vir Linden) 2012-02-29 13:09:28 -05:00
parent 2959bcd3de
commit 07545e99fc
3 changed files with 6 additions and 5 deletions

0
indra/llprimitive/llprimitive.cpp Normal file → Executable file
View File

View File

@ -4004,7 +4004,7 @@ void LLVOAvatar::updateVisibility()
LLNameValue* firstname = getNVPair("FirstName");
if (firstname)
{
llinfos << avString() << " updating visiblity" << llendl;
llinfos << avString() << " updating visibility" << llendl;
}
else
{
@ -4216,7 +4216,7 @@ U32 LLVOAvatar::renderSkinned(EAvatarRenderPass pass)
LLNameValue* firstname = getNVPair("FirstName");
if (firstname)
{
llinfos << "Avatar " << firstname->getString() << " in render" << llendl;
llinfos << avString() << " in render" << llendl;
}
else
{
@ -7231,8 +7231,9 @@ void LLVOAvatar::processAvatarAppearance( LLMessageSystem* mesgsys )
}
// runway - is this right? Will be called every time *except* the first.
// FIXME - trying toggle
// runway - was
// if (!is_first_appearance_message )
// which means it would be called on second appearance message - probably wrong.
if (is_first_appearance_message )
{
onFirstTEMessageReceived();

View File

@ -2339,7 +2339,7 @@ void LLVOAvatarSelf::outputRezDiagnostics() const
void LLVOAvatarSelf::outputRezTiming(const std::string& msg) const
{
llinfos
<< " Avatar '" << getFullname() << "' "
<< avString()
<< llformat("%s. Time from avatar creation: %.2f", msg.c_str(), mDebugSelfLoadTimer.getElapsedTimeF32())
<< llendl;
}