Subject: | Output must be specified afte Layout |
I'm not sure if this is a documentation issue or a bug.
This produces no output:
use Log::ger::Output 'Screen';
use Log::ger::Layout 'JSON';
use Log::ger;
log_warn( 'Foo' );
while this does:
use Log::ger::Layout 'JSON';
use Log::ger::Output 'Screen';
use Log::ger;
log_warn( 'Foo' );