Skip to content

Commit

Permalink
Add toString for the event entity
Browse files Browse the repository at this point in the history
  • Loading branch information
jnpsk committed Sep 13, 2024
1 parent 1de7a72 commit 40c39cc
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,14 @@ public int hashCode() {
return Objects.hash(idempotencyKey);
}

@Override
public String toString() {
return "CallbackUrlEventEntity{" +
"id=" + id +
", callbackUrlEntity=" + (callbackUrlEntity == null ? "null" : callbackUrlEntity.getId()) +
", status=" + status +
", attempts=" + attempts +
'}';
}

}

0 comments on commit 40c39cc

Please sign in to comment.