diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2013-06-17 16:56:59 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2013-06-17 16:56:59 -0400 |
commit | 1a42b98a8f55662aed448e9bcd5035082140bbcf (patch) | |
tree | 2d179dc95833997ce490ff59ca9b40c4cc27750e | |
parent | 79f91264e2a24cefbd9b6334d9451491b4fdcfe9 (diff) |
SH-4237 WIP - logging cleanup in onAIS handling
-rwxr-xr-x | indra/newview/llaisapi.cpp | 7 |
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; } } |