Added 'autoflush' to Catalyst::Log + enabled during setup
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Log.pm
CommitLineData
fc7ec1d9 1package Catalyst::Log;
2
e5ecd5bc 3use Moose;
531f1ab6 4with 'MooseX::Emulate::Class::Accessor::Fast';
5
f63c03e4 6use Data::Dump;
dd5b1dc4 7use Moose::Util 'find_meta';
0816209f 8use Carp qw/ cluck /;
9b2bc37b 9
c72d2e24 10our %LEVELS = (); # Levels stored as bit field, ergo debug = 1, warn = 2 etc
11our %LEVEL_MATCH = (); # Stored as additive, thus debug = 31, warn = 30 etc
a6433a05 12
3cdcf968 13has level => (is => 'rw');
5fb12dbb 14has _body => (is => 'rw');
3cdcf968 15has abort => (is => 'rw');
cae5df2c 16has autoflush => (is => 'rw');
21da7377 17has _psgi_logger => (is => 'rw', predicate => '_has_psgi_logger', clearer => '_clear_psgi_logger');
18has _psgi_errors => (is => 'rw', predicate => '_has_psgi_errors', clearer => '_clear_psgi_errors');
50f53fd7 19
20sub clear_psgi {
21 my $self = shift;
22 $self->_clear_psgi_logger;
23 $self->_clear_psgi_errors;
24}
25
26sub psgienv {
27 my ($self, $env) = @_;
28
21da7377 29 $self->_psgi_logger($env->{'psgix.logger'}) if $env->{'psgix.logger'};
30 $self->_psgi_errors($env->{'psgi.errors'}) if $env->{'psgi.errors'};
50f53fd7 31}
32
3cdcf968 33
2f9e6321 34{
a6433a05 35 my @levels = qw[ debug info warn error fatal ];
846772b7 36
dd5b1dc4 37 my $meta = find_meta(__PACKAGE__);
c72d2e24 38 my $summed_level = 0;
39 for ( my $i = $#levels ; $i >= 0 ; $i-- ) {
846772b7 40
41 my $name = $levels[$i];
eaae9a92 42
846772b7 43 my $level = 1 << $i;
c72d2e24 44 $summed_level |= $level;
eaae9a92 45
a6433a05 46 $LEVELS{$name} = $level;
c72d2e24 47 $LEVEL_MATCH{$name} = $summed_level;
a6433a05 48
4090e3bb 49 $meta->add_method($name, sub {
846772b7 50 my $self = shift;
51
3cdcf968 52 if ( $self->level & $level ) {
846772b7 53 $self->_log( $name, @_ );
54 }
4090e3bb 55 });
846772b7 56
4090e3bb 57 $meta->add_method("is_$name", sub {
846772b7 58 my $self = shift;
3cdcf968 59 return $self->level & $level;
4090e3bb 60 });;
846772b7 61 }
a6433a05 62}
63
4090e3bb 64around new => sub {
65 my $orig = shift;
a6433a05 66 my $class = shift;
4090e3bb 67 my $self = $class->$orig;
e2422920 68
c72d2e24 69 $self->levels( scalar(@_) ? @_ : keys %LEVELS );
e2422920 70
a6433a05 71 return $self;
4090e3bb 72};
a6433a05 73
74sub levels {
75 my ( $self, @levels ) = @_;
76 $self->level(0);
77 $self->enable(@levels);
78}
79
80sub enable {
81 my ( $self, @levels ) = @_;
3cdcf968 82 my $level = $self->level;
c72d2e24 83 for(map { $LEVEL_MATCH{$_} } @levels){
3cdcf968 84 $level |= $_;
85 }
86 $self->level($level);
a6433a05 87}
846772b7 88
a6433a05 89sub disable {
90 my ( $self, @levels ) = @_;
3cdcf968 91 my $level = $self->level;
92 for(map { $LEVELS{$_} } @levels){
93 $level &= ~$_;
94 }
95 $self->level($level);
846772b7 96}
97
0816209f 98our $HAS_DUMPED;
a6433a05 99sub _dump {
846772b7 100 my $self = shift;
0816209f 101 unless ($HAS_DUMPED++) {
102 cluck("Catalyst::Log::_dump is deprecated and will be removed. Please change to using your own Dumper.\n");
103 }
f63c03e4 104 $self->info( Data::Dump::dump(@_) );
846772b7 105}
106
107sub _log {
108 my $self = shift;
109 my $level = shift;
846772b7 110 my $message = join( "\n", @_ );
21da7377 111 if ($self->can('_has_psgi_logger') and $self->_has_psgi_logger) {
112 $self->_psgi_logger->({
0eb98ebd 113 level => $level,
114 message => $message,
115 });
116 } else {
208732e6 117 $message .= "\n" unless $message =~ /\n$/;
0eb98ebd 118 my $body = $self->_body;
119 $body .= sprintf( "[%s] %s", $level, $message );
120 $self->_body($body);
121 }
cae5df2c 122 if( $self->autoflush && !$self->abort ) {
123 $self->_flush;
124 }
4be535b1 125}
126
127sub _flush {
b5ecfcf0 128 my $self = shift;
3cdcf968 129 if ( $self->abort || !$self->_body ) {
b5ecfcf0 130 $self->abort(undef);
131 }
132 else {
3cdcf968 133 $self->_send_to_log( $self->_body );
4be535b1 134 }
3cdcf968 135 $self->_body(undef);
846772b7 136}
137
adee716c 138sub _send_to_log {
139 my $self = shift;
21da7377 140 if ($self->can('_has_psgi_errors') and $self->_has_psgi_errors) {
141 $self->_psgi_errors->print(@_);
0eb98ebd 142 } else {
143 print STDERR @_;
144 }
adee716c 145}
146
71415389 147# 5.7 compat code.
148# Alias _body to body, add a before modifier to warn..
149my $meta = __PACKAGE__->meta; # Calling meta method here fine as we happen at compile time.
150$meta->add_method('body', $meta->get_method('_body'));
eaae9a92 151my %package_hash; # Only warn once per method, per package.
71415389 152 # I haven't provided a way to disable them, patches welcome.
153$meta->add_before_method_modifier('body', sub {
154 my $class = blessed(shift);
155 $package_hash{$class}++ || do {
156 warn("Class $class is calling the deprecated method Catalyst::Log->body method,\n"
157 . "this will be removed in Catalyst 5.81");
158 };
159});
160# End 5.70 backwards compatibility hacks.
161
6680c772 162no Moose;
d14f9123 163__PACKAGE__->meta->make_immutable(inline_constructor => 0);
6680c772 164
846772b7 1651;
166
167__END__
fc7ec1d9 168
a273dd58 169=for stopwords psgienv
170
fc7ec1d9 171=head1 NAME
172
173Catalyst::Log - Catalyst Log Class
174
175=head1 SYNOPSIS
176
82d2fcbe 177 $log = $c->log;
846772b7 178 $log->debug($message);
179 $log->info($message);
180 $log->warn($message);
181 $log->error($message);
182 $log->fatal($message);
846772b7 183
f4dbb0d9 184 if ( $log->is_debug ) {
846772b7 185 # expensive debugging
186 }
82d2fcbe 187
a6433a05 188
fc7ec1d9 189See L<Catalyst>.
190
191=head1 DESCRIPTION
192
adee716c 193This module provides the default, simple logging functionality for Catalyst.
194If you want something different set C<< $c->log >> in your application module,
195e.g.:
82d2fcbe 196
197 $c->log( MyLogger->new );
198
199Your logging object is expected to provide the interface described here.
397be447 200Good alternatives to consider are Log::Log4Perl and Log::Dispatch.
201
202If you want to be able to log arbitrary warnings, you can do something along
203the lines of
204
205 $SIG{__WARN__} = sub { MyApp->log->warn(@_); };
206
207however this is (a) global, (b) hairy and (c) may have unexpected side effects.
208Don't say we didn't warn you.
82d2fcbe 209
a6433a05 210=head1 LOG LEVELS
211
b5ecfcf0 212=head2 debug
a6433a05 213
214 $log->is_debug;
215 $log->debug($message);
216
b5ecfcf0 217=head2 info
a6433a05 218
219 $log->is_info;
220 $log->info($message);
221
b5ecfcf0 222=head2 warn
a6433a05 223
224 $log->is_warn;
225 $log->warn($message);
226
b5ecfcf0 227=head2 error
a6433a05 228
229 $log->is_error;
230 $log->error($message);
231
b5ecfcf0 232=head2 fatal
a6433a05 233
234 $log->is_fatal;
235 $log->fatal($message);
236
b22c6668 237=head1 METHODS
fc7ec1d9 238
b5ecfcf0 239=head2 new
a6433a05 240
26e73131 241Constructor. Defaults to enable all levels unless levels are provided in
a6433a05 242arguments.
243
244 $log = Catalyst::Log->new;
26e73131 245 $log = Catalyst::Log->new( 'warn', 'error' );
a6433a05 246
3cdcf968 247=head2 level
248
249Contains a bitmask of the currently set log levels.
250
b5ecfcf0 251=head2 levels
a6433a05 252
253Set log levels
b22c6668 254
a6433a05 255 $log->levels( 'warn', 'error', 'fatal' );
fc7ec1d9 256
b5ecfcf0 257=head2 enable
fc7ec1d9 258
a6433a05 259Enable log levels
fc7ec1d9 260
a6433a05 261 $log->enable( 'warn', 'error' );
fc7ec1d9 262
b5ecfcf0 263=head2 disable
fc7ec1d9 264
a6433a05 265Disable log levels
fc7ec1d9 266
a6433a05 267 $log->disable( 'warn', 'error' );
fc7ec1d9 268
b5ecfcf0 269=head2 is_debug
a2f2cde9 270
b5ecfcf0 271=head2 is_error
a2f2cde9 272
b5ecfcf0 273=head2 is_fatal
a2f2cde9 274
b5ecfcf0 275=head2 is_info
a2f2cde9 276
b5ecfcf0 277=head2 is_warn
49ba64d7 278
279Is the log level active?
280
b5ecfcf0 281=head2 abort
4be535b1 282
eaae9a92 283Should Catalyst emit logs for this request? Will be reset at the end of
284each request.
4be535b1 285
286*NOTE* This method is not compatible with other log apis, so if you plan
287to use Log4Perl or another logger, you should call it like this:
288
289 $c->log->abort(1) if $c->log->can('abort');
290
cae5df2c 291=head2 autoflush
292
293When enabled, messages are written to the log immediately instead of queued
294until the end of the request. By default, autoflush is enabled during setup,
295but turned back off thereafter. This is done purely for legacy support,
296specifically for L<Catalyst::Plugin::Static::Simple>, and may be changed in
297the future.
298
adee716c 299=head2 _send_to_log
300
301 $log->_send_to_log( @messages );
302
303This protected method is what actually sends the log information to STDERR.
304You may subclass this module and override this method to get finer control
305over the log output.
306
d298046a 307=head2 psgienv $env
308
309 $log->psgienv($env);
310
311NOTE: This is not meant for public consumption.
312
313Set the PSGI environment for this request. This ensures logs will be sent to
314the right place. If the environment has a C<psgix.logger>, it will be used. If
315not, we will send logs to C<psgi.errors> if that exists. As a last fallback, we
316will send to STDERR as before.
317
a273dd58 318=head2 clear_psgi
319
320Clears the PSGI environment attributes set by L</psgienv>.
321
3cdcf968 322=head2 meta
323
fc7ec1d9 324=head1 SEE ALSO
325
326L<Catalyst>.
327
2f381252 328=head1 AUTHORS
fc7ec1d9 329
2f381252 330Catalyst Contributors, see Catalyst.pm
fc7ec1d9 331
332=head1 COPYRIGHT
333
536bee89 334This library is free software. You can redistribute it and/or modify
61b1e958 335it under the same terms as Perl itself.
fc7ec1d9 336
337=cut
338
e5ecd5bc 339__PACKAGE__->meta->make_immutable;
340
fc7ec1d9 3411;