The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Log::ger::Plugin::WithDie - Add *_die logging routines

VERSION

version 0.004

SYNOPSIS

 use Log::ger::Plugin 'WithDie';
 use Log::ger;
 my $log = Log::ger->get_logger;

These subroutines will also become available:

 log_error_die("blah!"); # in addition to log, will also die()
 log_fatal_die("blah!"); # in addition to log, will also die()

These logging methods will also become available:

 $log->error_die("blah!"); # in addition to log, will also die()
 $log->fatal_die("blah!"); # in addition to log, will also die()

DESCRIPTION

SEE ALSO

Log::ger::Plugin::WithWarn

Log::ger::Plugin::WithCarp

Log::ger::Plugin::Log4perl

AUTHOR

perlancar <perlancar@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2020, 2017 by perlancar@cpan.org.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.