Skip to content
This repository has been archived by the owner on Oct 14, 2023. It is now read-only.

Commit

Permalink
Changes -> Exception message now better
Browse files Browse the repository at this point in the history
  • Loading branch information
EinfacheSache committed Jul 20, 2023
1 parent 616e65a commit f3f4d87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ protected Response callRequest(Request request){
try {
return client.newCall(request).execute();
}catch (UnknownHostException | SocketTimeoutException | SocketException connectionException){
core.severe(connectionException.getMessage());
core.severe( request + " failed cause (" + connectionException + ")");
} catch (Exception exception){
exception.printStackTrace();
}
Expand Down

0 comments on commit f3f4d87

Please sign in to comment.