log4perl icon indicating copy to clipboard operation
log4perl copied to clipboard

Log4j Implementation For Perl

Results 27 log4perl issues
Sort by recently updated
recently updated
newest added

It would be really nice if one could pass in multiple key value pairs at the same time: ```perl Log::Log4perl::MDC->put( foo_http_code => $code, foo_http_msg => $msg, ); ``` Right now...

This configuration ``` log4perl.logger.Foo = INFO, STDERR log4perl.appender.STDERR = Log::Log4perl::Appender::Screen log4perl.appender.STDERR.stderr = 1 log4perl.appender.STDERR.layout = Log::Log4perl::Layout::PatternLayout::Multiline log4perl.appender.STDERR.layout.ConversionPattern = %m%n log4perl.appender.FILE = Log::Log4perl::Appender::File log4perl.appender.FILE.filename = file.log log4perl.appender.FILE.mode = append log4perl.appender.FILE.create_at_logtime =...

Log::Dispatch::File appenders should have the `binmode` parameter passed to them for utf8 encoding, when the utf8 flag is set.

Fix #113 Prefer using three args open over the two args form. view extended smoker run using changes from #121 at https://github.com/atoomic/log4perl/actions/runs/3492815436

Please see https://github.com/Perl/perl5/issues/20207, which reports that a [change in the development branch of perl](https://github.com/Perl/perl5/commit/80c1f1e45e8ef8c27d170fae7ade41971fe20218) on Aug 31 2022 is causing test failures in this CPAN distribution (example: http://www.cpantesters.org/cpan/report/1e115e94-2b96-11ed-81f2-51b805b3d53a).

Hi, Short summary: Instead of ``` DEBUG "Got here with " . $foo; ``` or even ``` DEBUG "Got here with " . Dumper $foo; ``` or even ``` DEBUG...