|
NAMECatalyst::Plugin::LogWarnings - Log perl warnings to your Catalyst log objectVERSIONVersion 0.03SYNOPSISIn MyApp.pm:use Catalyst qw/LogWarnings/; After that, any "warn" statement that's executed during action processing is sent to the log "$c-"log> as a warning (instead of being dumped to STDERR). Example: package MyApp::Controller::Foo; sub foo : Local() { warn 'foobar!'; } 1; Output (if you're using the standard Catalyst::Log logger): [info] MyApp running on Catalyst 5.7001 [warn] foobar at Foo.pm line 2 CONFIGURATIONNone.OVERRIDESexecuteWraps "Catalyst::execute" and catches warnings with a $SIG{__WARN__} statement.AUTHORJonathan Rockway, "<jrockway at cpan.org>"BUGSWarnings are caught after perl's rewritten them, so the line number and filename will be tacked on.Please report any bugs or feature requests to "bug-catalyst-plugin-logwarnings at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Catalyst-Plugin-LogWarnings>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. SUPPORTYou can find documentation for this module with the perldoc command.perldoc Catalyst::Plugin::LogWarnings You can also look for information at:
ACKNOWLEDGEMENTS#catalyst (<irc://irc.perl.org/#catalyst>).COPYRIGHT & LICENSECopyright 2006 Jonathan Rockway, all rights reserved.This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |