summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorandreykproductengine <akleshchev@productengine.com>2016-01-22 21:41:00 +0200
committerandreykproductengine <akleshchev@productengine.com>2016-01-22 21:41:00 +0200
commitc98bed2319f642051d13215af65e719910dc9bb3 (patch)
treeb52a8910c434bdbab0c31985291b960688023df3 /indra
parent2987303acd5e24ffa320566571c8987c1cf3f96f (diff)
MAINT-6070 compressing logs
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/llvoavatar.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index f14af04c0d..d57ba02dcc 100755
--- a/indra/newview/llvoavatar.cpp
+++ b/indra/newview/llvoavatar.cpp
@@ -8406,12 +8406,13 @@ void LLVOAvatar::calculateUpdateRenderComplexity()
}
attachment_total_cost = attachment_volume_cost + attachment_texture_cost + attachment_children_cost;
- LL_DEBUGS("ARCdetail") << "Attachment " << attached_object->getAttachmentItemID()
- << " has total cost: " << attachment_total_cost
- << " volume cost: " << attachment_volume_cost
- << " texture cost: " << attachment_texture_cost
- << " and includes " << volume->numChildren()
- << " children with " << attachment_children_cost << " cost" << LL_ENDL;
+ LL_DEBUGS("ARCdetail") << "Attachment costs " << attached_object->getAttachmentItemID()
+ << " total: " << attachment_total_cost
+ << ", volume: " << attachment_volume_cost
+ << ", textures: " << attachment_texture_cost
+ << ", " << volume->numChildren()
+ << " children: " << attachment_children_cost
+ << LL_ENDL;
cost += attachment_total_cost;
}
}