package WebService::Cath::FuncNet::Logger; =head1 NAME WebService::Cath::FuncNet::Logger =head1 SYNOPSIS Provides singleton Log4perl logging object package WebService::Cath::FuncNet::NewClass; use Moose; use WebService::Cath::FuncNet::Logger; $logger = get_logger(); sub class_method { $logger->info( "foo" ); } =cut use Moose; use Log::Log4perl qw( get_logger ); use base 'Exporter'; our @EXPORT = qw( get_logger ); with 'WebService::Cath::FuncNet::Logable'; 1; # Magic true value required at end of module __END__ =head1 SEE ALSO L =head1 AUTHOR Ian Sillitoe C<< >> =head1 LICENCE AND COPYRIGHT Copyright (c) 2008, Ian Sillitoe C<< >>. All rights reserved. This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See L.