
App::Magpie::Logger - magpie logging facility

version 1.122770

my $log = App::Magpie::Logger->instance;
$log->log_fatal( "die!" );

This module holds a singleton used to log stuff throughout various magpie commands. Logging itself is done with Log::Dispatchouli.

The logging level is an integer. In reality, only 3 levels are recognized:

$magpie->log( ... );
$magpie->log_debug( ... );
$magpie->log_fatal( ... );
Log stuff at various verbose levels. Uses Log::Dispatchouli underneath - refer to this module for more information.

Jerome Quelin <jquelin@gmail.com>

This software is copyright (c) 2011 by Jerome Quelin.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.