File Coverage

blib/lib/Dancer2/Logger/Null.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Dancer2::Logger::Null;
2             # ABSTRACT: Blackhole-like silent logging engine for Dancer2
3             $Dancer2::Logger::Null::VERSION = '2.0.1';
4 2     2   314995 use Moo;
  2         10743  
  2         15  
5             with 'Dancer2::Core::Role::Logger';
6              
7             sub log {1}
8              
9             1;
10              
11             __END__