Skip to content

Commit

Permalink
Don't print full stack trace when websocket fails to connect
Browse files Browse the repository at this point in the history
  • Loading branch information
Gegy committed Nov 19, 2024
1 parent c8ab966 commit 2fa9f90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void acceptMessage(final JsonObject payload) {

@Override
public void acceptError(final Throwable cause) {
LOGGER.error("Donations websocket closed with error", cause);
LOGGER.error("Donations websocket closed with error: {}", cause.getMessage());
}

@Override
Expand Down

0 comments on commit 2fa9f90

Please sign in to comment.