From: Galen Charlton Date: Tue, 24 May 2016 17:27:05 +0000 (-0400) Subject: LP#1580676: fix error message X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c48288ded7b86b76ccd8f85911f5a1a979d5c6d8;p=evergreen%2Fmasslnc.git LP#1580676: fix error message This patch fixes a typo in the error message presented if the queued record could not be cleaned up for some reason; it also reports the correct type of the record. Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/support-scripts/marc_stream_importer.pl b/Open-ILS/src/support-scripts/marc_stream_importer.pl index 29d5e85d04..670e8c7739 100755 --- a/Open-ILS/src/support-scripts/marc_stream_importer.pl +++ b/Open-ILS/src/support-scripts/marc_stream_importer.pl @@ -380,7 +380,7 @@ sub import_queued_records { }; if ($@) { - $logger->error("Error deleteing queued bib record $_: $@"); + $logger->error("Error deleting queued $cur_rec_type record $_: $@"); last; } }