File Coverage

blib/lib/MooseX/Role/Logger.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1 1     1   1006896 use strict;
  1         4  
  1         36  
2 1     1   5 use warnings;
  1         2  
  1         55  
3              
4             package MooseX::Role::Logger;
5             # ABSTRACT: Provide logging via Log::Any (DEPRECATED)
6             our $VERSION = '0.004'; # VERSION
7              
8 1     1   4 use Moo::Role;
  1         2  
  1         5  
9             with 'MooX::Role::Logger';
10              
11             1;
12              
13              
14             # vim: ts=4 sts=4 sw=4 et:
15              
16             __END__