1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
|
use strict;
use warnings;
package Plack::Middleware::LogErrors; # git description: v0.002-21-g414ec0a
# vim: set ts=8 sts=4 sw=4 tw=115 et :
# ABSTRACT: Map psgi.errors to psgix.logger or other logger
# KEYWORDS: plack middleware errors logging environment I/O handle
our $VERSION = '0.003';
use parent 'Plack::Middleware';
use Plack::Util::Accessor 'logger';
use Scalar::Util ();
sub prepare_app
{
my $self = shift;
die "'logger' is not a coderef!"
if $self->logger and not __isa_coderef($self->logger);
}
sub call
{
my ($self, $env) = @_;
my $logger = $self->logger || $env->{'psgix.logger'};
die 'no psgix.logger in $env; cannot map psgi.errors to it!'
if not $logger;
# convert to something that matches the psgi.errors specs
$env->{'psgi.errors'} = Plack::Middleware::LogErrors::LogHandle->new($logger);
return $self->app->($env);
}
sub __isa_coderef
{
ref $_[0] eq 'CODE'
or (Scalar::Util::reftype($_[0]) || '') eq 'CODE'
or overload::Method($_[0], '&{}')
}
package # hide from PAUSE
Plack::Middleware::LogErrors::LogHandle;
# ABSTRACT: convert psgix.logger-like logger into an IO::Handle-like object
sub new
{
my ($class, $logger) = @_;
return bless { logger => $logger }, $class;
}
sub print
{
my ($self, $message) = @_;
$self->{logger}->({
level => 'error',
message => $message,
});
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Plack::Middleware::LogErrors - Map psgi.errors to psgix.logger or other logger
=head1 VERSION
version 0.003
=head1 SYNOPSIS
Using a logger you have already configured (using L<Log::Dispatch> as an
example):
use Log::Dispatch;
my $logger = Log::Dispatch->new;
$logger->add( Log::Dispatch::File->new(...) );
builder {
enable 'LogDispatch', logger => $logger;
enable 'LogErrors';
$app;
}
Using an explicitly defined logger:
builder {
enable 'LogErrors', logger => sub {
my $args = shift;
$logger->log(%$args);
};
$app;
}
=head1 DESCRIPTION
=for stopwords psgi psgix middlewares
C<psgi.errors> defaults to C<STDERR> in most backends, which results in
content going somewhere unhelpful like the server console.
This middleware simply remaps the C<psgi.errors> stream to the
C<psgix.logger> stream, or an explicit logger that you provide.
This is especially handy when used in combination with other middlewares
such as L<Plack::Middleware::LogWarn> (which diverts Perl warnings to
C<psgi.errors>);
L<Plack::Middleware::HTTPExceptions> (which diverts
uncaught exceptions to C<psgi.errors>);
and L<Plack::Middleware::AccessLog>, which defaults to C<psgi.errors> when not
passed a logger -- which is also automatically applied via L<plackup> (so if
you provided no C<--access-log> option indicating a filename, C<psgi.errors>
is used).
=head1 CONFIGURATION
=head2 C<logger>
A code reference for logging messages, that conforms to the
L<psgix.logger|PSGI::Extensions/SPECIFICATION> specification.
If not provided, C<psgix.logger> is used, or the application will generate an
error at runtime if there is no such logger configured.
=head1 SEE ALSO
=over 4
=item *
L<PSGI::Extensions> - the definition of C<psgix.logger>
=item *
L<PSGI/"The Error Stream"> - the definition of C<psgi.errors>
=item *
L<Plack::Middleware::LogWarn> - maps warnings to C<psgi.errors>
=item *
L<Plack::Middleware::HTTPExceptions> - maps exceptions to C<psgi.errors>
=item *
L<Plack::Middleware::LogDispatch> - use a L<Log::Dispatch> logger for C<psgix.logger>
=item *
L<Plack::Middleware::Log4perl> - use a L<Log::Log4perl> logger for C<psgix.logger>
=item *
L<Plack::Middleware::SimpleLogger> - essentially the opposite of this module!
=back
=head1 SUPPORT
Bugs may be submitted through L<the RT bug tracker|https://rt.cpan.org/Public/Dist/Display.html?Name=Plack-Middleware-LogErrors>
(or L<bug-Plack-Middleware-LogErrors@rt.cpan.org|mailto:bug-Plack-Middleware-LogErrors@rt.cpan.org>).
There is also a mailing list available for users of this distribution, at
L<https://groups.google.com/forum/#!forum/psgi-plack>.
There is also an irc channel available for users of this distribution, at
L<C<#plack> on C<irc.perl.org>|irc://irc.perl.org/#plack>.
I am also usually active on irc, as 'ether' at C<irc.perl.org>.
=head1 AUTHOR
Karen Etheridge <ether@cpan.org>
=head1 COPYRIGHT AND LICENCE
This software is copyright (c) 2013 by Karen Etheridge.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|