Print error if temporary attachment file can’t be deleted

This commit is contained in:
AsamK 2015-09-15 13:26:36 +02:00
parent 117f839547
commit a6f65ae3a0

View file

@ -293,7 +293,9 @@ class Manager {
if (output != null) { if (output != null) {
output.close(); output.close();
} }
tmpFile.delete(); if (!tmpFile.delete()) {
System.err.println("Failed to delete temp file: " + tmpFile);
}
} }
return outputFile; return outputFile;
} }