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.1.0';
4 3     3   330366 use Moo;
  3         11660  
  3         23  
5             with 'Dancer2::Core::Role::Logger';
6              
7             sub log {1}
8              
9             1;
10              
11             __END__