View | Details | Raw Unified | Return to bug 25527
Collapse All | Expand All

(-)a/C4/ImportBatch.pm (-3 / +2 lines)
Lines 83-90 BEGIN { Link Here
83
	);
83
	);
84
}
84
}
85
85
86
our $logger = Koha::Logger->get( { category => 'C4.ImportBatch' } );
87
88
=head1 NAME
86
=head1 NAME
89
87
90
C4::ImportBatch - manage batches of imported MARC records
88
C4::ImportBatch - manage batches of imported MARC records
Lines 800-805 sub BatchCommitItems { Link Here
800
sub BatchRevertRecords {
798
sub BatchRevertRecords {
801
    my $batch_id = shift;
799
    my $batch_id = shift;
802
800
801
    my $logger = Koha::Logger->get( { category => 'C4.ImportBatch' } );
802
803
    $logger->trace("C4::ImportBatch::BatchRevertRecords( $batch_id )");
803
    $logger->trace("C4::ImportBatch::BatchRevertRecords( $batch_id )");
804
804
805
    my $record_type;
805
    my $record_type;
806
- 

Return to bug 25527