• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Log/Any/Adapter/H22-Apr-2018-17839

t/H22-Apr-2018-344281

xt/H22-Apr-2018-168109

CONTRIBUTING.mkdnH A D22-Apr-20183 KiB8857

ChangesH A D22-Apr-20181.2 KiB5429

LICENSEH A D22-Apr-201817.9 KiB380292

MANIFESTH A D22-Apr-2018495 2625

META.jsonH A D22-Apr-20183.1 KiB112110

META.ymlH A D22-Apr-20181.4 KiB5554

Makefile.PLH A D22-Apr-20181.6 KiB6655

READMEH A D22-Apr-20181.8 KiB6946

cpanfileH A D22-Apr-20181.4 KiB4843

dist.iniH A D22-Apr-2018241 118

perlcritic.rcH A D22-Apr-2018630 2720

README

1NAME
2    Log::Any::Adapter::Log4perl - Log::Any adapter for Log::Log4perl
3
4VERSION
5    version 0.09
6
7SYNOPSIS
8        use Log::Log4perl;
9        Log::Log4perl::init('/etc/log4perl.conf');
10
11        Log::Any::Adapter->set('Log::Log4perl');
12
13DESCRIPTION
14    This Log::Any adapter uses Log::Log4perl for logging. log4perl must be
15    initialized before calling *set*. There are no parameters.
16
17LOG LEVEL TRANSLATION
18    Log levels are translated from Log::Any to Log4perl as follows:
19
20        notice -> info
21        warning -> warn
22        critical -> fatal
23        alert -> fatal
24        emergency -> fatal
25
26METHODS
27  structured
28    This adapter supports structured logging, introduced in Log-Any v1.700.
29
30SEE ALSO
31    *   Log::Any
32
33    *   Log::Any::Adapter
34
35    *   Log::Log4perl
36
37SUPPORT
38  Bugs / Feature Requests
39    Please report any bugs or feature requests through the issue tracker at
40    <https://github.com/preaction/Log-Any-Adapter-Log4perl/issues>. You will
41    be notified automatically of any progress on your issue.
42
43  Source Code
44    This is open source software. The code repository is available for
45    public review and contribution under the terms of the license.
46
47    <https://github.com/preaction/Log-Any-Adapter-Log4perl>
48
49      git clone https://github.com/preaction/Log-Any-Adapter-Log4perl.git
50
51AUTHORS
52    *   Jonathan Swartz <swartz@pobox.com>
53
54    *   David Golden <dagolden@cpan.org>
55
56    *   Doug Bell <preaction@cpan.org>
57
58CONTRIBUTORS
59    *   Doug Bell <doug@preaction.me>
60
61    *   Gianni Ceccarelli <gianni.ceccarelli@broadbean.com>
62
63COPYRIGHT AND LICENSE
64    This software is copyright (c) 2018 by Jonathan Swartz.
65
66    This is free software; you can redistribute it and/or modify it under
67    the same terms as the Perl 5 programming language system itself.
68
69