NAME
Log::ger::Output::Screen - Output log to screen
VERSION
version 0.003
SYNOPSIS
use Log::ger::Output Screen => (
# stderr => 1, # set to 0 to print to stdout instead of stderr
# use_color => 0, # set to 1/0 to force usage of color, default is from COLOR or (-t STDOUT)
# formatter => sub { ... },
);
use Log::ger;
log_warn "blah...";
DESCRIPTION
CONFIGURATION
stderr => bool (default: 1)
Whether to print to STDERR (the default) or st=head2 use_color => bool
use_color => bool
The default is to look at the COLOR environment variable, or 1 when in interactive mode and 0 when not in interactive mode.
formatter => code
When defined, will pass the formatted message (but being applied with colors) to this custom formatter.
TODO
Allow customizing colors.
ENVIRONMENT
COLOR => bool
SEE ALSO
Modelled after Log::Any::Adapter::Screen.
AUTHOR
perlancar <perlancar@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 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.