Skip to content

Commit

Permalink
Passing exception to log statement (https://issues.jboss.org/browse/J…
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Nov 7, 2012
1 parent a316dea commit d13773e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/jgroups/protocols/FILE_PING.java
Expand Up @@ -313,7 +313,7 @@ private File writeToTempFile(File dir, PingData data) {
}
catch(Exception e) {
Util.close(out);
log.error("Failed to write temporary file: "+file.getAbsolutePath());
log.error("Failed to write temporary file: "+file.getAbsolutePath(), e);
deleteFile(file);
return null;
}
Expand Down

0 comments on commit d13773e

Please sign in to comment.