Skip to content

Commit 1f0ba93

Browse files
committedAug 27, 2015
use exception message. no method overload exists for log.severe
1 parent f55c012 commit 1f0ba93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎java/server/src/org/openqa/grid/internal/TestSession.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -561,7 +561,7 @@ public boolean sendDeleteSessionRequest() {
561561
} catch (Throwable e) {
562562
ok = false;
563563
// corrupted or the something else already sent the DELETE.
564-
log.severe("Unable to send DELETE request for the current session", e);
564+
log.severe("Unable to send DELETE request for the current session " + e.getMessage());
565565
} finally {
566566
try {
567567
EntityUtils.consume(responseBody);

0 commit comments

Comments
 (0)
Please sign in to comment.