1Log::ger::Output(3) User Contributed Perl Documentation Log::ger::Output(3)
2
3
4
6 Log::ger::Output - Set logging output
7
9 version 0.038
10
12 To set globally:
13
14 use Log::ger::Output;
15 Log::ger::Output->set(Screen => (
16 use_color => 1,
17 ...
18 );
19
20 or:
21
22 use Log::ger::Output 'Screen', (
23 use_color=>1,
24 ...
25 );
26
27 To set for current package only:
28
29 use Log::ger::Output;
30 Log::ger::Output->set_for_current_package(Screen => (
31 use_color => 1,
32 ...
33 );
34
36 Log::ger::Format
37
38 Log::ger::Layout
39
40 Log::ger::Plugin
41
42 Log::ger::Filter
43
45 perlancar <perlancar@cpan.org>
46
48 This software is copyright (c) 2021, 2020, 2019, 2018, 2017 by
49 perlancar@cpan.org.
50
51 This is free software; you can redistribute it and/or modify it under
52 the same terms as the Perl 5 programming language system itself.
53
54
55
56perl v5.34.0 2021-07-22 Log::ger::Output(3)