Skip to content

Commit

Permalink
log: whitespace change
Browse files Browse the repository at this point in the history
  • Loading branch information
steveschnepp committed Oct 29, 2023
1 parent f2aa835 commit 84d1a53
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/Munin/Common/Logger.pm
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,11 @@ sub _whoami {
# uncoverable subroutine
my @c = caller(1); return $c[3] . ":" . $c[2]
}
sub _whowasi { my @c = caller(2); return $c[3] . ":" . $c[2] }

sub _whowasi {
my @c = caller(2);
return $c[3] . ":" . $c[2];
}

sub would_log {
my ($level) = @_;
Expand Down

0 comments on commit 84d1a53

Please sign in to comment.