File Coverage

blib/lib/Dancer/Logger/Null.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             package Dancer::Logger::Null;
2             our $AUTHORITY = 'cpan:SUKRIA';
3             #ABSTRACT: blackhole-like silent logging engine for Dancer
4             $Dancer::Logger::Null::VERSION = '1.3520';
5 3     3   1691 use strict;
  3         8  
  3         89  
6 3     3   16 use warnings;
  3         9  
  3         78  
7 3     3   15 use base 'Dancer::Logger::Abstract';
  3         8  
  3         1111  
8              
9 1     1   666 sub _log {1}
10              
11             1;
12              
13             __END__