From fb96010d2ac46e6927184570e4042235534bd533 Mon Sep 17 00:00:00 2001 From: Shyotl Date: Thu, 26 May 2016 22:35:14 -0500 Subject: [PATCH] Remove some console spam introduced when fixing issues with inventory filtering. --- indra/newview/llinventoryfilter.cpp | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/indra/newview/llinventoryfilter.cpp b/indra/newview/llinventoryfilter.cpp index 7357b0a67..dc8441bff 100644 --- a/indra/newview/llinventoryfilter.cpp +++ b/indra/newview/llinventoryfilter.cpp @@ -111,34 +111,6 @@ bool LLInventoryFilter::check(LLFolderViewItem* item) passed_clipboard && passed_wearable && (mFilterSubString.size() == 0 || mSubStringMatchOffset != std::string::npos)); - - if (!passed) - { - bool passed_label = (mFilterSubString.size() == 0 || mSubStringMatchOffset != std::string::npos); - LL_INFOS() << item->getSearchableLabel() << " filtered." << - " passed_filtertype:" << passed_filtertype << - " passed_permissions:" << passed_permissions << - " passed_filterlink:" << passed_filterlink << - " passed_wearable:" << passed_wearable << - " passed_label:" << passed_label << - " passed:" << passed; - - if ((mFilterOps.mFilterTypes & FILTERTYPE_NONE)) - LL_CONT << " FILTERTYPE_NONE "; - if ((mFilterOps.mFilterTypes & FILTERTYPE_OBJECT) ) - LL_CONT << " FILTERTYPE_OBJECT "; - if ((mFilterOps.mFilterTypes & FILTERTYPE_CATEGORY)) - LL_CONT << " FILTERTYPE_CATEGORY "; - if ((mFilterOps.mFilterTypes & FILTERTYPE_UUID)) - LL_CONT << " FILTERTYPE_UUID "; - if ((mFilterOps.mFilterTypes & FILTERTYPE_DATE)) - LL_CONT << " FILTERTYPE_DATE "; - if ((mFilterOps.mFilterTypes & FILTERTYPE_WEARABLE)) - LL_CONT << " FILTERTYPE_WEARABLE "; - if ((mFilterOps.mFilterTypes & FILTERTYPE_EMPTYFOLDERS)) - LL_CONT << " FILTERTYPE_EMPTYFOLDERS "; - LL_CONT << LL_ENDL; - } return passed; }