Alexander Hartmaier
Alexander Hartmaier
We'd need this to be able to prefix the message by the NDC which should default to an empty string in case there is no NDC set.
My search for a workaround showed that NDC doesn't care about this config option: https://metacpan.org/dist/Log-Log4perl/source/lib/Log/Log4perl/NDC.pm#L19
This is what I've come up with: ``` use Log::Log4perl; use Log::Log4perl::Layout::PatternLayout; $Log::Log4perl::ALLOW_CODE_IN_CONFIG_FILE = 1; Log::Log4perl::Layout::PatternLayout::add_global_cspec('U', sub { my $ndc = Log::Log4perl::NDC->get(); return $ndc eq '[undef]' ? '' : "$ndc...
I prefer the flexibility of `es_conf` and would just remove the now incorrect parts in README.md.
Still waiting for a fix.
Is there any update on this? I wasn't able to find a solution for my quite deeply nested data structure, where each level stores all primary keys of the levels...
Will this get merged and released?
I'd also prefer Moo over Mouse as the former is already in my (quite big) stack of CPAN modules and the later isn't.
Is the plan to remove the dependency on Mouse still alive?
I like that idea very much! 👍🏻 As raku compiles the source code to an intermediate format and stores those files, can't the infos from META6.json be added to all...