summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2013-06-17 16:56:59 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2013-06-17 16:56:59 -0400
commit1a42b98a8f55662aed448e9bcd5035082140bbcf (patch)
tree2d179dc95833997ce490ff59ca9b40c4cc27750e
parent79f91264e2a24cefbd9b6334d9451491b4fdcfe9 (diff)
SH-4237 WIP - logging cleanup in onAIS handling
-rwxr-xr-xindra/newview/llaisapi.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/indra/newview/llaisapi.cpp b/indra/newview/llaisapi.cpp
index 21f6482a06..e57bbbb0be 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;
}
}