revised documentation for 5.0
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Log.pm
index 833087b..f2a6aee 100644 (file)
@@ -22,8 +22,10 @@ See L<Catalyst>.
 
 =head1 DESCRIPTION
 
-This module provides the default, simple logging functionality for Catalyst.
-If you want something different set C<$c->log> in your application module, e.g.:
+This module provides the default, simple logging functionality for 
+Catalyst.
+If you want something different set C<$c->log> in your application 
+module, e.g.:
 
     $c->log( MyLogger->new );
 
@@ -76,19 +78,11 @@ sub _format {
 
 =back
 
-=head1 DEPRECATED METHODS
-
-=over 4
-
-=item $log->dump($reference)
-
-Logs a Data::Dumper of reference.
-
 =cut
 
-sub dump { shift->_format( 'dump', Dumper( $_[0] ) ) }
+# Private - Logs a Data::Dumper of reference.
+sub _dump { shift->_format( 'dump', Dumper( $_[0] ) ) }
 
-=back
 
 =head1 SEE ALSO
 
@@ -97,11 +91,12 @@ L<Catalyst>.
 =head1 AUTHOR
 
 Sebastian Riedel, C<sri@cpan.org>
+Marcus Ramberg, C<mramberg@cpan.org>
 
 =head1 COPYRIGHT
 
-This program is free software, you can redistribute it and/or modify it under
-the same terms as Perl itself.
+This program is free software, you can redistribute it and/or modify 
+it under the same terms as Perl itself.
 
 =cut