There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

NAME

Logfile::EPrints::Filter - base class for filters

SYNOPSIS

A minimal filter that removes all abstract requests:

package Logfile::EPrints::Filter::Custom;

our @ISA = qw( Logfile::EPrints::Filter );

sub abstract {}

1;