Ignore:
Timestamp:
2005-12-15T15:04:21+13:00 (18 years ago)
Author:
kjdon
Message:

commented out a line which was incrementing self->num_not_processed. the final counts at the end of num docs processed/not processed etc were getting screwed up cos failed convert to docs were getting counted twice.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/perllib/plugins/ConvertToPlug.pm

    r10890 r10994  
    281281    print $outhandle "Could not convert $tailname$suffix to $convert_to format\n";
    282282    print $failhandle "$tailname$suffix: " . ref($self) . " failed to convert to $convert_to\n";
    283     $self->{'num_not_processed'} ++;
     283    # The following  meant that if a conversion failed, the document would be counted twice - do we need it for anything?
     284    #$self->{'num_not_processed'} ++;
    284285    if (-s "$errlog") {
    285286        open(ERRLOG, "$errlog");
Note: See TracChangeset for help on using the changeset viewer.