diff options
-rwxr-xr-x | local/post-receive.gentoo-commits | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/local/post-receive.gentoo-commits b/local/post-receive.gentoo-commits index 85d019d..cc0a4fd 100755 --- a/local/post-receive.gentoo-commits +++ b/local/post-receive.gentoo-commits @@ -423,7 +423,13 @@ sub get_data($) { if (!$data{"committer_email"} || !$data{"committer_realname"} || !$data{"committer"}) { { no warnings; - warn("Warning: falling back to legacy committer detection as no or not enough metadata was provided committer_email=$data{"committer_email"} committer_realname=$data{"committer_realname"} committer=$data{"committer"}"); + warn( + sprintf("Warning: falling back to legacy committer detection as no or not enough metadata was provided committer_email='%s' committer_realname='%s' committer='%s'", + $data{"committer_email"}, + $data{"committer_realname"}, + $data{"committer"} + ) + ); } $data{"committer_email"} = pop(@fields); $data{"committer_email"} =~ s/[<>]//g; |