Skip to content

Commit

Permalink
use exception message. no method overload exists for log.severe
Browse files Browse the repository at this point in the history
  • Loading branch information
ddavison committed Aug 27, 2015
1 parent f55c012 commit 1f0ba93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/server/src/org/openqa/grid/internal/TestSession.java
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ public boolean sendDeleteSessionRequest() {
} catch (Throwable e) {
ok = false;
// corrupted or the something else already sent the DELETE.
log.severe("Unable to send DELETE request for the current session", e);
log.severe("Unable to send DELETE request for the current session " + e.getMessage());
} finally {
try {
EntityUtils.consume(responseBody);
Expand Down

0 comments on commit 1f0ba93

Please sign in to comment.