From: Bill Erickson Date: Mon, 1 Aug 2011 21:54:45 +0000 (-0400) Subject: Remove debug logging X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c81803d0f6cb4e5220fd9b82f9a2cbd0fad01cf1;p=evergreen%2Fequinox.git Remove debug logging Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Search.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Search.pm index 220726d469..cc39afa654 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Search.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/EGCatLoader/Search.pm @@ -43,13 +43,11 @@ sub _prepare_biblio_search_basics { $query = '^' . $query . '$'; } - $logger->info("OPAC bool = $bool"); $bool = ($bool eq 'or') ? '||' : '&&'; $full_query = $full_query ? "($full_query $bool $query)" : $query; push @chunks, $query; } - $logger->info("OPAC FULL QUERY: $full_query"); return $full_query; }