diff options
author | andreykproductengine <akleshchev@productengine.com> | 2016-01-22 21:41:00 +0200 |
---|---|---|
committer | andreykproductengine <akleshchev@productengine.com> | 2016-01-22 21:41:00 +0200 |
commit | c98bed2319f642051d13215af65e719910dc9bb3 (patch) | |
tree | b52a8910c434bdbab0c31985291b960688023df3 /indra/newview | |
parent | 2987303acd5e24ffa320566571c8987c1cf3f96f (diff) |
MAINT-6070 compressing logs
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/llvoavatar.cpp | 13 |
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; } } |