
Catalyst::Log - Catalyst Log Class

$log = $c->log;
$log->debug($message);
$log->info($message);
$log->warn($message);
$log->error($message);
$log->fatal($message);
if ( $log->is_debug ) {
# expensive debugging
}
See Catalyst.

This module provides the default, simple logging functionality for Catalyst. If you want something different set $c-log> in your application module, e.g.:
$c->log( MyLogger->new );
Your logging object is expected to provide the interface described here.

$log->is_debug;
$log->debug($message);
$log->is_info;
$log->info($message);
$log->is_warn;
$log->warn($message);
$log->is_error;
$log->error($message);
$log->is_fatal;
$log->fatal($message);

Constructor. Defaults to enable all levels unless levels are provided in arguments.
$log = Catalyst::Log->new;
$log = Catalyst::Log->new( 'warn', 'error' );
Set log levels
$log->levels( 'warn', 'error', 'fatal' );
Enable log levels
$log->enable( 'warn', 'error' );
Disable log levels
$log->disable( 'warn', 'error' );
Is the log level active?
Should Catalyst emit logs for this request? Will be reset at the end of each request.
*NOTE* This method is not compatible with other log apis, so if you plan to use Log4Perl or another logger, you should call it like this:
$c->log->abort(1) if $c->log->can('abort');


Sebastian Riedel, sri@cpan.org Marcus Ramberg, mramberg@cpan.org Christian Hansen, ch@ngmedia.com

This program is free software, you can redistribute it and/or modify it under the same terms as Perl itself.