From: Bill Erickson Date: Wed, 21 Jan 2015 21:44:19 +0000 (-0500) Subject: JBAS-415 make autogen less warn-y for less chatty updates X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=1051985d28a36311fd605b65a25893a7c963af75;p=working%2FEvergreen.git JBAS-415 make autogen less warn-y for less chatty updates Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Utils/Configure.pm b/Open-ILS/src/perlmods/lib/OpenILS/Utils/Configure.pm index 351a129643..33b9557d5e 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Utils/Configure.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Utils/Configure.pm @@ -93,7 +93,7 @@ sub org_tree_js { $cache->delete_cache("orgtree."); foreach my $locale (@$locales) { - warn "removing OrgTree from the cache for locale " . $locale->code . "...\n"; + print "removing OrgTree from the cache for locale " . $locale->code . "...\n"; $cache->delete_cache("orgtree.".$locale->code); # fetch the org_unit's and org_unit_type's @@ -279,7 +279,7 @@ sub facet_types { my $locales = get_locales(); foreach my $locale (@$locales) { - warn "removing facet list from the cache for locale " . $locale->code . "...\n"; + print "removing facet list from the cache for locale " . $locale->code . "...\n"; my $cache = OpenSRF::Utils::Cache->new; $cache->delete_cache("facet_definition.".$locale->code);