|
NAMECatalyst::Plugin::Log::Dispatch - Log module of Catalyst that uses Log::Dispatch VERSIONThis document describes Catalyst::Plugin::Log::Dispatch version 2.15 SYNOPSIS package MyApp;
use Catalyst qw/Log::Dispatch/;
configuration in source code MyApp->config->{ Log::Dispatch } = [
{
class => 'File',
name => 'file',
min_level => 'debug',
filename => MyApp->path_to('debug.log'),
format => '[%p] %m %n',
}];
in myapp.yml Log::Dispatch:
- class: File
name: file
min_level: debug
filename: __path_to(debug.log)__
mode: append
format: '[%p] %m %n'
If you use Catalyst::Plugin::ConfigLoader, please load this module after Catalyst::Plugin::ConfigLoader. DESCRIPTIONCatalyst::Plugin::Log::Dispatch is a plugin to use Log::Dispatch from Catalyst. CONFIGURATIONIt is same as the configuration of Log::Dispatch excluding "class" and "format". DEPENDENCIESCatalyst, Log::Dispatch, Log::Dispatch::Config AUTHORShota Takayama "<shot[at]bindstorm.jp>" LICENCE AND COPYRIGHTCopyright (c) 2006, Shota Takayama "<shot[at]bindstorm.jp>". All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.
|