Skip to content

Commit

Permalink
Fix logging of Author and Assignee
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAndrews committed Nov 23, 2015
1 parent 8eedf3d commit 6e3b157
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/dabsquared/gitlabjenkins/GitLabWebHook.java
Original file line number Diff line number Diff line change
Expand Up @@ -417,8 +417,8 @@ protected void buildOpenMergeRequests(GitLabPushTrigger trigger, Integer project
+ 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");
Expand Down

0 comments on commit 6e3b157

Please sign in to comment.