Help for this page

Select Code to Download


  1. or download this
    sub process_log {
        my ($log, $pattern) = @_;
    ...
    }
    
    my $problems = process_log(\@Log, $FAILURE_SEARCH);
    
  2. or download this
    sub process_log {
        my ($log_fh, $pattern) = @_;
    ...
        }
        return @issues;
    }