Name : perl-MooseX-Log-Log4perl
| |
Version : 0.47
| Vendor : openSUSE
|
Release : bp151.2.11
| Date : 2019-05-18 03:32:00
|
Group : Development/Libraries/Perl
| Source RPM : perl-MooseX-Log-Log4perl-0.47-bp151.2.11.src.rpm
|
Size : 0.02 MB
| |
Packager : https://bugs_opensuse_org
| |
Summary : Logging Role for Moose based on Log::Log4perl
|
Description :
A logging role building a very lightweight wrapper to Log::Log4perl for use with your Moose or Moo classes. The initialization of the Log4perl instance must be performed prior to logging the first log message. Otherwise the default initialization will happen, probably not doing the things you expect.
For compatibility the \'logger\' attribute can be accessed to use a common interface for application logging.
Using the logger within a class is as simple as consuming a role:
package MyClass; use Moose; with \'MooseX::Log::Log4perl\';
sub dummy { my $self = shift; $self->log->info(\"Dummy log entry\"); }
The logger needs to be setup before using the logger, which could happen in the main application:
package main; use Log::Log4perl qw(:easy); use MyClass;
BEGIN { Log::Log4perl->easy_init() };
my $myclass = MyClass->new(); $myclass->log->info(\"In my class\"); # Access the log of the object $myclass->dummy; # Will log \"Dummy log entry\"
|
RPM found in directory: /packages/linux-pbone/ftp5.gwdg.de/pub/opensuse/repositories/openSUSE:/Backports:/SLE-15-SP1/standard/noarch |