Skip to content

Commit

Permalink
Merge e55f312 into 22c3d48
Browse files Browse the repository at this point in the history
  • Loading branch information
Grinnz committed Dec 10, 2017
2 parents 22c3d48 + e55f312 commit 2bf7e90
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/Log/Contextual.pm
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ sub stash_name {
return $cv->GV->STASH->NAME;
}

my @dlog = ((map "Dlog_$_", @levels), (map "DlogS_$_", @levels));
my @dlog = ((map "Dlog_$_", @levels), (map "DlogS_$_", @levels),
(map "Dslog_$_", @levels), (map "DslogS_$_", @levels));

my @log = ((map "log_$_", @levels), (map "logS_$_", @levels));
my @log = ((map "log_$_", @levels), (map "logS_$_", @levels),
(map "slog_$_", @levels), (map "slogS_$_", @levels));

sub _maybe_export {
my ($spec, $target, $name, $new_code) = @_;
Expand Down

0 comments on commit 2bf7e90

Please sign in to comment.