Skip to content

Commit

Permalink
Override AsciiResponse#toString() to include type information (#206)
Browse files Browse the repository at this point in the history
* Override AsciiResponse#toString() to include type information

* fix version in changelog

---------

Co-authored-by: thiagocesarj <76481925+thiagocesarj@users.noreply.github.com>
  • Loading branch information
cciollaro and thiagocesarj authored Feb 28, 2024
1 parent 18b8222 commit 74630c8
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,9 @@ public enum Type {
OUT_OF_MEMORY,
CLIENT_ERROR
}

@Override
public String toString() {
return "AsciiResponse{type=" + this.type + "}";
}
}

0 comments on commit 74630c8

Please sign in to comment.