File Coverage

blib/lib/Lab/Connection/DEBUG/Log.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod n/a
total 27 27 100.0


line stmt bran cond sub pod time code
1             package Lab::Connection::DEBUG::Log;
2             #ABSTRACT: Add logging capability to the DEBUG connection
3             $Lab::Connection::DEBUG::Log::VERSION = '3.880';
4 1     1   2002 use v5.20;
  1         7  
5              
6 1     1   15 use warnings;
  1         3  
  1         29  
7 1     1   7 use strict;
  1         5  
  1         21  
8              
9 1     1   10 use parent 'Lab::Connection::DEBUG';
  1         2  
  1         8  
10              
11 1     1   155 use Role::Tiny::With;
  1         14  
  1         57  
12 1     1   7 use Carp;
  1         3  
  1         74  
13 1     1   8 use autodie;
  1         2  
  1         6  
14              
15             our %fields = (
16             logfile => undef,
17             log_index => 0,
18             );
19              
20             with 'Lab::Connection::Log';
21              
22             1;
23              
24             __END__
25              
26             =pod
27              
28             =encoding UTF-8
29              
30             =head1 NAME
31              
32             Lab::Connection::DEBUG::Log - Add logging capability to the DEBUG connection
33              
34             =head1 VERSION
35              
36             version 3.880
37              
38             =head1 COPYRIGHT AND LICENSE
39              
40             This software is copyright (c) 2023 by the Lab::Measurement team; in detail:
41              
42             Copyright 2016 Simon Reinhardt
43             2017 Andreas K. Huettel
44             2020 Andreas K. Huettel
45              
46              
47             This is free software; you can redistribute it and/or modify it under
48             the same terms as the Perl 5 programming language system itself.
49              
50             =cut