@@ -, +, @@ --- misc/search_tools/rebuild_elastic_search.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- a/misc/search_tools/rebuild_elastic_search.pl +++ a/misc/search_tools/rebuild_elastic_search.pl @@ -101,7 +101,7 @@ GetOptions( 'a|authorities' => \$index_authorities, 'b|biblios' => \$index_biblios, 'bn|bnumber=i' => \@biblionumbers, - 'v|verbose!' => \$verbose, + 'v|verbose+' => \$verbose, 'h|help' => \$help, 'man' => \$man, ); @@ -194,5 +194,5 @@ sub do_reindex { sub _log { my ($level, $msg) = @_; - print $msg if ($verbose <= $level); + print $msg if ($verbose >= $level); } --