Last active
February 17, 2021 19:49
-
-
Save preaction/e2052b926a15b55d232fa4a16a0e7b7c to your computer and use it in GitHub Desktop.
Log::Any v2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Log::Any; | |
=head1 SYNOPSIS | |
### Basic use | |
# Get a logger that logs to STDERR | |
use Log::Any; | |
my $log = Log::Any->new; | |
# Shortcut | |
use Log::Any qw( $log ); | |
# Log levels | |
$log->info( "Informational" ); | |
$log->debug( "Debugging" ); | |
$log->warn( "Warning" ); | |
$log->error( "Error!" ); | |
$log->fatal( "Fatal!" ); | |
### CPAN Modules / Opt-in logging | |
# Get a logger that is silent (logs go nowhere) by default | |
use Log::Any::Proxy; | |
my $log = Log::Any::Proxy->new; | |
if ( $log->is_silent ) { | |
warn "Load Log::Any to see my logging!\n"; | |
} | |
# Shortcut | |
use Log::Any::Proxy qw( $log ); | |
# Make any silent loggers log to Stderr | |
use Log::Any; | |
if ( !$log->is_silent ) { | |
say "Now I don't feel lonely!"; | |
} | |
### Log to Syslog | |
use Log::Any -syslog; | |
### Log to Stderr, Syslog, and a file | |
use Log::Any -stderr, -syslog, -file => 'debug.log'; | |
### Log to Log4perl | |
use Log::Any -log4perl; | |
# With a config file | |
use Log::Any -log4perl => 'log4perl.properties'; | |
### Add a log destination | |
use Log::Any qw( $log ); | |
$log->to( -file => 'debug.log' ); | |
# Add a log destination for one run | |
perl -MLog::Any=-file,debug.log script.pl | |
### Get a scoped log object | |
my $scoped_log = $log->scope; | |
# Add contextual information | |
$scoped_log->context( id => 'request id' ); | |
# Shortcut | |
my $scoped_log = $log->scope( id => 'request id' ); | |
# Log this scope to a file | |
$scoped_log->to( -file => 'debug.log' ); | |
### Logging | |
# Log conditionally | |
$log->debug( sub { "A wall of text" ); | |
# Log with formatting | |
$log->debugf( "An object: %s", $object ); | |
# Log conditionally with formatting | |
$log->debugf( sub { "An object: %s", $object } ); | |
# Log and exit non-zero. Something is displayed even if silent or logs are redirected. | |
die $log->fatal( "Goodbye" ); | |
# Log and warn. Something is displayed even if silent or logs are redirected. | |
warn $log->warn( "I feel asleep!" ); | |
# Log and print. Something is displayed even if silent or logs are redirected. | |
say $log->info( "Hello new friend!" ); | |
### Log output | |
# Regular log messages | |
use Log::Any qw( $log ); # ??? Should timestamp? | |
$log->info( "Hello" ); # [info] Hello | |
$log->warn( "Uh-oh" ); # [warn] Uh-oh | |
die $log->fatal( "Oh no!" ); # [fatal] Oh no! | |
# Oh no! at script.pl line 4. | |
# Show stack traces | |
use Log::Any -trace, qw( $log ); | |
$log->info( "Hello" ); # [info] Hello at script.pl line 2. | |
$log->warn( "Uh-oh" ); # [warn] Uh-oh at script.pl line 3. | |
die $log->fatal( "Oh no!" ); # [fatal] Oh no! at script.pl line 4. | |
# Oh no! at script.pl line 4. | |
# Enable traces for one run | |
perl -MLog::Any=-trace script.pl | |
# With context | |
use Log::Any qw( $log ); | |
$log->context( REMOTE_ADDR => '127.0.0.1' ); # ??? What must be supported in tag names/values? | |
$log->info( "There's no place like" ); # [info] There's no place like REMOTE_ADDR=127.0.0.1 | |
$log->infof( "We're not in %s, anymore", "Kansas" ); # [info] We're not in Kansas, anymore REMOTE_ADDR=127.0.0.1 | |
=head1 DESCRIPTION | |
=head1 SEE ALSO | |
=cut | |
1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment