X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FLog.pm;h=4b3c3c3b0e22b2129f033a6889527ea677863127;hp=af779bedce78fc5b1c8388cf76a792bfdbdc8360;hb=b5ecfcf07b8ffe7e9984f0279c8781ce51c6ac6a;hpb=b22c66686d892bba76a150f727561f8778f3ea72 diff --git a/lib/Catalyst/Log.pm b/lib/Catalyst/Log.pm index af779be..4b3c3c3 100644 --- a/lib/Catalyst/Log.pm +++ b/lib/Catalyst/Log.pm @@ -4,7 +4,91 @@ use strict; use base 'Class::Accessor::Fast'; use Data::Dumper; -$Data::Dumper::Terse = 1; +our %LEVELS = (); + +__PACKAGE__->mk_accessors('level'); +__PACKAGE__->mk_accessors('body'); +__PACKAGE__->mk_accessors('abort'); + +{ + my @levels = qw[ debug info warn error fatal ]; + + for ( my $i = 0 ; $i < @levels ; $i++ ) { + + my $name = $levels[$i]; + my $level = 1 << $i; + + $LEVELS{$name} = $level; + + no strict 'refs'; + + *{$name} = sub { + my $self = shift; + + if ( $self->{level} & $level ) { + $self->_log( $name, @_ ); + } + }; + + *{"is_$name"} = sub { + my $self = shift; + return $self->{level} & $level; + }; + } +} + +sub new { + my $class = shift; + my $self = $class->SUPER::new; + $self->levels( scalar(@_) ? @_ : keys %LEVELS ); + return $self; +} + +sub levels { + my ( $self, @levels ) = @_; + $self->level(0); + $self->enable(@levels); +} + +sub enable { + my ( $self, @levels ) = @_; + $self->{level} |= $_ for map { $LEVELS{$_} } @levels; +} + +sub disable { + my ( $self, @levels ) = @_; + $self->{level} &= ~$_ for map { $LEVELS{$_} } @levels; +} + +sub _dump { + my $self = shift; + local $Data::Dumper::Terse = 1; + $self->info( Dumper( $_[0] ) ); +} + +sub _log { + my $self = shift; + my $level = shift; + my $time = localtime(time); + my $message = join( "\n", @_ ); + $self->{body} .= + sprintf( "[%s] [catalyst] [%s] %s\n", $time, $level, $message ); +} + +sub _flush { + my $self = shift; + if ( $self->abort || !$self->body ) { + $self->abort(undef); + } + else { + print( STDERR $self->body ); + } + $self->body(undef); +} + +1; + +__END__ =head1 NAME @@ -12,61 +96,107 @@ Catalyst::Log - Catalyst Log Class =head1 SYNOPSIS + $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 L. =head1 DESCRIPTION -Simple logging functionality for Catalyst. +This module provides the default, simple logging functionality for +Catalyst. +If you want something different set C<$c->log> in your application +module, e.g.: -=head1 METHODS + $c->log( MyLogger->new ); -=over 4 +Your logging object is expected to provide the interface described here. -=item $c->debug($msg) +=head1 LOG LEVELS -Logs a debugging message. +=head2 debug -=cut + $log->is_debug; + $log->debug($message); -sub debug { _format( 'debug', $_[1] ) } +=head2 info -=item $c->dump($ref) + $log->is_info; + $log->info($message); -Logs a formatted dump of a variable passed by reference (uses C). +=head2 warn -=cut + $log->is_warn; + $log->warn($message); -sub dump { _format( 'dump', Dumper( $_[1] ) ) } +=head2 error -=item $c->error($msg) + $log->is_error; + $log->error($message); -Logs an error message. +=head2 fatal -=cut + $log->is_fatal; + $log->fatal($message); -sub error { _format( 'error', $_[1] ) } +=head1 METHODS -=item $c->info($msg) +=head2 new -Logs an informational message. +Constructor. Defaults to enable all levels unless levels are provided in +arguments. -=cut + $log = Catalyst::Log->new; + $log = Catalyst::Log->new( 'warn', 'error' ); -sub info { _format( 'info', $_[1] ) } +=head2 levels -=item $c->warn($msg) +Set log levels -Logs a warning message. + $log->levels( 'warn', 'error', 'fatal' ); -=cut +=head2 enable -sub warn { _format( 'warn', $_[1] ) } +Enable log levels -sub _format { - print STDERR '[' . localtime(time) . "] [catalyst] [$_[0]] $_[1]\n"; -} + $log->enable( 'warn', 'error' ); + +=head2 disable + +Disable log levels + + $log->disable( 'warn', 'error' ); + +=head2 is_debug + +=head2 is_error + +=head2 is_fatal + +=head2 is_info + +=head2 is_warn + +Is the log level active? + +=head2 abort + +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: -=back + $c->log->abort(1) if $c->log->can('abort'); =head1 SEE ALSO @@ -75,11 +205,13 @@ L. =head1 AUTHOR Sebastian Riedel, C +Marcus Ramberg, C +Christian Hansen, C =head1 COPYRIGHT -This program is free software, you can redistribute it and/or modify it under -the same terms as Perl itself. +This program is free software, you can redistribute it and/or modify +it under the same terms as Perl itself. =cut