From ea1573e1c3f8d480701397d4302b5533f8d8c9e7 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 26 May 2015 03:09:11 -0400 Subject: [PATCH] Don't log warning when localized string for search condition not found Falls back to item field strings, so not sure why I added logging for this. --- chrome/content/zotero/xpcom/search.js | 1 - 1 file changed, 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/search.js b/chrome/content/zotero/xpcom/search.js index 11d51481a..f904d5f57 100644 --- a/chrome/content/zotero/xpcom/search.js +++ b/chrome/content/zotero/xpcom/search.js @@ -2300,7 +2300,6 @@ Zotero.SearchConditions = new function(){ return Zotero.getString('searchConditions.' + str) } catch (e) { - Zotero.debug("String not found for searchConditions." + str, 2); return Zotero.ItemFields.getLocalizedString(null, str); } }