Subject: | t/01-functionality.t broken in newer perls |
t/01-functionality.t has the line:
foreach my $lvl qw(debug info warn err crit) {
This isn't valid in up to date versions of perl. Instead it should be:
foreach my $lvl (qw(debug info warn err crit)) {