From c3fda28fc565bbf5aad2031919681d63dca99640 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 27 Oct 2023 07:21:03 +0000 Subject: [PATCH] Bug 35141: (QA follow-up) Increment the bad count Also move earlier print to warn for consistency. Signed-off-by: Marcel de Rooy (cherry picked from commit 3439185bb0b901e5a902cc8887fa07526f33ea55) Signed-off-by: Fridolin Somers --- misc/link_bibs_to_authorities.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/misc/link_bibs_to_authorities.pl b/misc/link_bibs_to_authorities.pl index 3dfdd049b7..78b0dd2687 100755 --- a/misc/link_bibs_to_authorities.pl +++ b/misc/link_bibs_to_authorities.pl @@ -202,10 +202,9 @@ sub process_bib { my $allowrelink = $args->{allowrelink}; my $biblio = Koha::Biblios->find($biblionumber); my $record; - eval{ $record = $biblio->metadata->record; }; + eval { $record = $biblio->metadata->record; }; unless ( defined $record ) { - print -"\nCould not retrieve bib $biblionumber from the database - record is corrupt.\n"; + warn "Could not retrieve bib $biblionumber from the database - record is corrupt."; $num_bad_bibs++; return; } @@ -220,6 +219,7 @@ sub process_bib { }; if ($@) { warn "Error while searching for authorities for biblionumber $biblionumber at " . localtime(time); + $num_bad_bibs++; return; } -- 2.20.1