From c48288ded7b86b76ccd8f85911f5a1a979d5c6d8 Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Tue, 24 May 2016 13:27:05 -0400 Subject: [PATCH] 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 --- Open-ILS/src/support-scripts/marc_stream_importer.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } } -- 2.11.0