http://qs321.pair.com?node_id=1213010


in reply to Re^2: Wanted: Opinions on Logging Frameworks
in thread Wanted: Opinions on Logging Frameworks

Because if I use Log::Any for production, I can use any adapter for consumption, meaning I can swap out or override easily. Also because most of the CPAN modules I like use Log::Any so I can control output from them in my own logging framework.

Also note that I only gave Log::Dispatch as an example of an adapter, one that can multiplex. Normally you only need to load Log::Any and can use the default adapters that are provided with the companion Log::Any::Adapter.


The way forward always starts with a minimal test.
  • Comment on Re^3: Wanted: Opinions on Logging Frameworks

Replies are listed 'Best First'.
Re^4: Wanted: Opinions on Logging Frameworks
by learnedbyerror (Monk) on Apr 16, 2018 at 17:42 UTC

    Thank you for your explanation. It makes a lot of sense. I'm off to MetaCPAN now to look at what modules have a reverse dependency on Log::Any :)

    lbe