summaryrefslogtreecommitdiff
path: root/lib/Dancer/Logger/PSGI.pm
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-06-03 14:52:53 +0200
committerfranck cuny <franck@lumberjaph.net>2010-06-03 16:10:34 +0200
commitcbbeb0ecc5b1224743848ac773860a49009c4fbd (patch)
tree034d782bf95e7050881099c7d1eb3fd59a5d90bc /lib/Dancer/Logger/PSGI.pm
parentreadme (diff)
downloaddancer-logger-psgi-cbbeb0ecc5b1224743848ac773860a49009c4fbd.tar.gz
swith to dist::zilla
Diffstat (limited to '')
-rw-r--r--lib/Dancer/Logger/PSGI.pm23
1 files changed, 3 insertions, 20 deletions
diff --git a/lib/Dancer/Logger/PSGI.pm b/lib/Dancer/Logger/PSGI.pm
index 797def4..9134e2b 100644
--- a/lib/Dancer/Logger/PSGI.pm
+++ b/lib/Dancer/Logger/PSGI.pm
@@ -1,7 +1,10 @@
package Dancer::Logger::PSGI;
+# ABSTRACT: PSGI Log handler for Dancer
+
use strict;
use warnings;
+
our $VERSION = '0.01';
use Dancer::SharedData;
@@ -19,11 +22,6 @@ sub _log {
}
1;
-__END__
-
-=head1 NAME
-
-Dancer::Logger::PSGI - PSGI logger handler for Dancer
=head1 SYNOPSIS
@@ -44,18 +42,3 @@ With L<Plack::Middleware::ConsoleLogger>, all your log will be send to the javas
=head1 DESCRIPTION
This class is an interface between your Dancer's application and B<psgix.logger>. Message will be logged in whatever logger you decided to use in your L<Plack> handler. If no logger is defined, nothing will be logged.
-
-=head1 AUTHOR
-
-franck cuny E<lt>franck@lumberjaph.netE<gt>
-
-=head1 SEE ALSO
-
-L<Plack::Middleware::ConsoleLogger>, L<Plack::Middleware::NullLogger>, L<Plack::Middleware::Log4perl>.
-
-=head1 LICENSE
-
-This library is free software; you can redistribute it and/or modify
-it under the same terms as Perl itself.
-
-=cut