The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Catalyst::Plugin::LogWarnings - Log perl warnings to your Catalyst log object

VERSION

Version 0.03

SYNOPSIS

In 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

CONFIGURATION

None.

OVERRIDES

execute

Wraps Catalyst::execute and catches warnings with a $SIG{__WARN__} statement.

AUTHOR

Jonathan Rockway, <jrockway at cpan.org>

BUGS

Warnings 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.

SUPPORT

You 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 & LICENSE

Copyright 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.