Skip to content

Commit

Permalink
added IssuesEvent toString
Browse files Browse the repository at this point in the history
  • Loading branch information
Zomis committed Jan 21, 2015
1 parent 88e3daa commit 1b00c37
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,12 @@ public void setPayload(IssuesEvent event) {
this.label = event.label;
}

@Override
public String toString() {
return "IssuesEvent [action=" + action + ", issue=" + issue
+ ", assignee=" + assignee + ", label=" + label + ", sender="
+ sender + ", repository=" + repository + ", organization="
+ organization + "]";
}

}

0 comments on commit 1b00c37

Please sign in to comment.