summary refs log tree commit diff
path: root/lib/Dancer
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Dancer')
-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