Fix logging of Author and Assignee

This commit is contained in:
Tom Andrews 2015-10-30 17:48:38 +00:00
parent 8eedf3dfd6
commit 6e3b157914
1 changed files with 2 additions and 2 deletions

View File

@ -417,8 +417,8 @@ public class GitLabWebHook implements UnprotectedRootAction {
+ mr.getSourceBranch() + "\n target: "
+ mr.getTargetBranch() + "\n state: "
+ mr.getState() + "\n assign: "
+ mr.getAssignee() + "\n author: "
+ mr.getAuthor() + "\n id: "
+ mr.getAssignee().getName() + "\n author: "
+ mr.getAuthor().getName() + "\n id: "
+ mr.getId() + "\n iid: "
+ mr.getIid() + "\n last commit: "
+ lastCommit.getId() + "\n\n");