Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

use strict;
sub call {
my($self, $env) = @_;
$env->{'psgix.logger'} = sub { };
$self->app->($env);
}
1;
__END__
=head1 NAME
Plack::Middleware::NullLogger - Send logs to /dev/null
=head1 SYNOPSIS
enable "NullLogger";
=head1 DESCRIPTIOM
NullLogger is a middleware component that receives logs and does
nothing but discarding them. Might be useful to shut up all the logs
from frameworks in one shot.
=head1 AUTHOR
Tatsuhiko Miyagawa
=cut