#!perl

our $DATE = '2017-08-03'; # DATE
our $VERSION = '0.001'; # VERSION

use strict;
use warnings;

use Log::ger;
use Log::ger::Output 'Screen';
use Log::ger::Util;

Log::ger::Util::set_level("trace");
log_trace("trace trace trace trace trace trace");
log_debug("debug debug debug debug debug debug");
log_info ("info info info info info info info info");
log_warn ("warn warn warn warn warn warn warn warn");
log_error("error error error error error error");
log_fatal("fatal fatal fatal fatal fatal fatal");

# ABSTRACT: Demo Log::ger::Output::Screen colors
# PODNAME: log-ger-demo-screen-colors

__END__

=pod

=encoding UTF-8

=head1 NAME

log-ger-demo-screen-colors - Demo Log::ger::Output::Screen colors

=head1 VERSION

This document describes version 0.001 of log-ger-demo-screen-colors (from Perl distribution App-LogGerUtils), released on 2017-08-03.

=head1 HOMEPAGE

Please visit the project's homepage at L<https://metacpan.org/release/App-LogGerUtils>.

=head1 SOURCE

Source repository is at L<https://github.com/perlancar/perl-App-LogGerUtils>.

=head1 BUGS

Please report any bugs or feature requests on the bugtracker website L<https://rt.cpan.org/Public/Dist/Display.html?Name=App-LogGerUtils>

When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.

=head1 AUTHOR

perlancar <perlancar@cpan.org>

=head1 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.

=cut
