summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2013-02-12 16:49:50 -0500
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2013-02-12 16:49:50 -0500
commit550ff94d6a30367c3ea3d2c597b9fea2911039c8 (patch)
treefeafc3e024db416a057c23a9a12029a360ad2a8f /indra/newview
parent02e9afd0e5d727ea0729fb2242b3a89247ae5b1a (diff)
removed some redundant or deprecated timers
Diffstat (limited to 'indra/newview')
-rwxr-xr-xindra/newview/llvoavatar.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index e2f455258d..346c55e589 100755
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -5879,6 +5879,7 @@ void LLVOAvatar::updateRezzedStatusTimers()
if (rez_status != mLastRezzedStatus)
{
LL_DEBUGS("Avatar") << avString() << "rez state change: " << mLastRezzedStatus << " -> " << rez_status << LL_ENDL;
+#if 0
bool is_cloud_or_gray = (rez_status==0 || rez_status==1);
bool was_cloud_or_gray = (mLastRezzedStatus==0 || mLastRezzedStatus==1);
bool is_cloud = (rez_status==0);
@@ -5907,6 +5908,7 @@ void LLVOAvatar::updateRezzedStatusTimers()
// stop cloud-or-gray timer, which will capture stats.
stopPhase("cloud-or-gray");
}
+#endif
if (mLastRezzedStatus == -1 && rez_status != -1)
{
@@ -6020,7 +6022,6 @@ void LLVOAvatar::logMetricsTimerRecord(const std::string& phase_name, F32 elapse
{
LLSD record;
record["timer_name"] = phase_name;
- record["agent_id"] = gAgent.getID();
record["avatar_id"] = getID();
record["elapsed"] = elapsed;
record["completed"] = completed;