From 1051985d28a36311fd605b65a25893a7c963af75 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Wed, 21 Jan 2015 16:44:19 -0500 Subject: [PATCH] JBAS-415 make autogen less warn-y for less chatty updates Signed-off-by: Bill Erickson --- Open-ILS/src/perlmods/lib/OpenILS/Utils/Configure.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.11.0