JBAS-415 make autogen less warn-y for less chatty updates
authorBill Erickson <berickxx@gmail.com>
Wed, 21 Jan 2015 21:44:19 +0000 (16:44 -0500)
committerBill Erickson <berickxx@gmail.com>
Thu, 21 Mar 2019 19:46:23 +0000 (15:46 -0400)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Open-ILS/src/perlmods/lib/OpenILS/Utils/Configure.pm

index 351a129..33b9557 100644 (file)
@@ -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);