EntityModel-Log
view release on metacpan or search on metacpan
lib/EntityModel/Log.pm view on Meta::CPAN
$log->error("OO-style error");
=head1 DESCRIPTION
Yet another logging class. Provides a procedural and OO interface as usual - intended for use
with L<EntityModel> only, if you're looking for a general logging framework try one of the
other options in the L</SEE ALSO> section.
=cut
# Need to be able to switch off logging in UNITCHECK stages, since that segfaults perl5.10.1 and possibly other versions
our $DISABLE = 0;
use Time::HiRes qw{time};
use POSIX qw{strftime};
use Exporter;
use List::Util qw{min max};
use Scalar::Util qw{blessed};
use IO::Handle;
use File::Basename ();
use Data::Dump ();
( run in 0.949 second using v1.01-cache-2.11-cpan-748bfb374f4 )