/usr/share/perl5/MooseX/Role/Logger.pm is in libmoox-role-logger-perl 0.005-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | use strict;
use warnings;
package MooseX::Role::Logger;
# ABSTRACT: Provide logging via Log::Any (DEPRECATED)
our $VERSION = '0.005'; # VERSION
use Moo::Role;
with 'MooX::Role::Logger';
1;
# vim: ts=4 sts=4 sw=4 et:
__END__
=pod
=encoding UTF-8
=head1 NAME
MooseX::Role::Logger - Provide logging via Log::Any (DEPRECATED)
=head1 VERSION
version 0.005
=head1 DESCRIPTION
L<MooseX::Role::Logger> has been renamed to L<MooX::Role::Logger> to clarify
that it works with both L<Moo> and L<Moose>. This role just wraps that one and
is provided for backwards compatibility.
See L<MooX::Role::Logger> for usage details.
=head1 AUTHOR
David Golden <dagolden@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2013 by David Golden.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004
=cut
|