LP#1580676: fix error message
authorGalen Charlton <gmc@esilibrary.com>
Tue, 24 May 2016 17:27:05 +0000 (13:27 -0400)
committerGalen Charlton <gmc@esilibrary.com>
Tue, 24 May 2016 17:27:05 +0000 (13:27 -0400)
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 <gmc@esilibrary.com>
Open-ILS/src/support-scripts/marc_stream_importer.pl

index 29d5e85..670e8c7 100755 (executable)
@@ -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;
         }
     }