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

NAME

Catalyst::Plugin::Log::Log4perl - Catalyst plugin to initialize Log::Log4perl from the application's configuration

SYNOPSIS

  # in MyApp.pm

  use Catalyst qw/ ConfigLoader Log::Log4perl /;
  use Catalyst::Log::Log4perl;

  ...

  __PACKAGE__->log( Catalyst::Log::Log4perl->new );

  __PACKAGE__->setup();


  # in myapp.yaml

  name: MyApp
  Plugin::Log::Log4perl:
    conf: '__HOME__/log4perl.conf'
    watch_delay: 60 # optional

DESCRIPTION

This module allows you to initialize Log::Log4perl within the application's configuration. This is especially useful when using Catalyst::Plugin::ConfigLoader to load configuration files. It is meant to be used in conjunction with Catalyst::Log::Log4perl, but can also be used stand-alone.

CONFIGURATION

conf

This will be passed directly to Log::Log4perl->init(), so it can be anything that that method can support. This includes the name of a configuration file or a HASH reference. See the Log::Log4perl documentation for more information.

watch_delay

If this is present, Log::Log4perl->init_and_watch() is used for Log::Log4perl initialization with the given delay.

BUGS

If Catalyst::Log::Log4perl is used, this module will re-initialize Log::Log4perl which is not recommended. This is unavoidable, though, since your application's logger is configured prior to running MyApp->setup().

AUTHOR

jason hord <pravus@cpan.org>

SEE ALSO

Log::Log4perl
Catalyst::Log::Log4perl

COPYRIGHT

Copyright (c) 2010, jason hord

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.