From 1a42b98a8f55662aed448e9bcd5035082140bbcf Mon Sep 17 00:00:00 2001
From: "Brad Payne (Vir Linden)" <vir@lindenlab.com>
Date: Mon, 17 Jun 2013 16:56:59 -0400
Subject: [PATCH] SH-4237 WIP - logging cleanup in onAIS handling

---
 indra/newview/llaisapi.cpp | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/indra/newview/llaisapi.cpp b/indra/newview/llaisapi.cpp
index 21f6482a06f..e57bbbb0bef 100755
--- a/indra/newview/llaisapi.cpp
+++ b/indra/newview/llaisapi.cpp
@@ -315,7 +315,7 @@ void AISUpdate::parseUpdate(const LLSD& update)
 			}
 			else
 			{
-				llwarns << "unrecognized embedded field " << field << llendl;
+				//LL_DEBUGS("Inventory") << "unhandled embedded field " << field << llendl;
 			}
 		}
 		
@@ -439,8 +439,9 @@ void AISUpdate::doUpdate()
 		LLViewerInventoryCategory *cat = gInventory.getCategory(id);
 		if (cat->getVersion() != version)
 		{
-			llwarns << "Possible version mismatch, viewer " << cat->getVersion()
-					<< " server " << version << llendl;
+			llwarns << "Possible version mismatch for category " << cat->getName()
+					<< ", viewer version " << cat->getVersion()
+					<< " server version " << version << llendl;
 		}
 	}
 
-- 
GitLab