Provided by: libmessage-passing-filter-regexp-perl_0.05-2_all bug

NAME

       Message::Passing::Filter::Regexp::Log - Extension for Regexp::Log with Config::Tiny

SYNOPSIS

         use Message::Passing::Filter::Regexp::Log;
         my $regex = Message::Passing::Filter::Regexp::Log->new(
             regexfile => "./regexfile",
             format => ":syslog",
             capture => [qw(pri host msg time)]
         );
         my @fields = $foo->capture;

         my $re = $foo->regexp;

         while (<>) {
             my %data;
             @data{@fields} = /$re/;    # no need for /o, it's a compiled regexp
         };

DESCRIPTION

SEE ALSO

       "Regexp::Log::Common"

AUTHOR

       chenryn, <rao.chenlin@gmail.com<gt>

COPYRIGHT AND LICENSE

       Copyright (C) 2012 by chenryn

       This library is free software; you can redistribute it and/or modify it under the same
       terms as Perl itself, either Perl version 5.14.2 or, at your option, any later version of
       Perl 5 you may have available.