diff --git a/lib/Munin/Common/Logger.pm b/lib/Munin/Common/Logger.pm index 09e9350a2..916f546a5 100644 --- a/lib/Munin/Common/Logger.pm +++ b/lib/Munin/Common/Logger.pm @@ -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) = @_;