From c98bed2319f642051d13215af65e719910dc9bb3 Mon Sep 17 00:00:00 2001
From: andreykproductengine <akleshchev@productengine.com>
Date: Fri, 22 Jan 2016 21:41:00 +0200
Subject: [PATCH] MAINT-6070 compressing logs

---
 indra/newview/llvoavatar.cpp | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp
index f14af04c0dc..d57ba02dcca 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;
 						}
 					}
-- 
GitLab