IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 25, 2010, 10:31:01 AM (16 years ago)
Author:
Paul Price
Message:

Adding error state for "All images rejected" (stacks).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/errors.pl

    r27890 r28088  
    106106my %variance;
    107107my %error_reading;
     108my %all_rejected;
    108109my %unknown;
    109110my %bad;
     
    205206        if ($line =~ /Error reading .*, (\S+)/) {
    206207            $error_reading{$name} = $1;
     208            $found = 1;
     209            last;
     210        }
     211        if ($line =~ /All images rejected/) {
     212            $all_rejected{$name} = $log;
    207213            $found = 1;
    208214            last;
     
    228234print_failure(\%variance, "'Variance renormalisation' errors");
    229235print_failure(\%error_reading, "'Error reading' errors");
     236print_failure(\%all_rejected, "'All images rejected' errors");
    230237print_failure(\%unknown, "Unknown errors");
    231238print_failure(\%bad, "Bad logs");
Note: See TracChangeset for help on using the changeset viewer.