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.023
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
43 perlancar <perlancar@cpan.org>
44
46 This software is copyright (c) 2017 by perlancar@cpan.org.
47
48 This is free software; you can redistribute it and/or modify it under
49 the same terms as the Perl 5 programming language system itself.
50
51
52
53perl v5.28.0 2017-08-03 Log::ger::Output(3)