do not print trace stack

This commit is contained in:
momo 2015-09-25 10:47:00 -04:00
parent 3c55f259d9
commit 09b29baa94

View File

@ -476,8 +476,8 @@ class SevenZipExtractor {
localFile.getParentFile().mkdirs();
try {
localFile.createNewFile();
} catch (IOException ex) {
logger.log(Level.SEVERE, "Error creating extracted file: " + localFile.getAbsolutePath(), ex); //NON-NLS
} catch (IOException e) {
logger.log(Level.SEVERE, "Error creating extracted file: {0}", localFile.getAbsolutePath()); //NON-NLS
}
}
} catch (SecurityException e) {