Print error if temporary attachment file can’t be deleted
This commit is contained in:
parent
117f839547
commit
a6f65ae3a0
@ -293,7 +293,9 @@ class Manager {
|
||||
if (output != null) {
|
||||
output.close();
|
||||
}
|
||||
tmpFile.delete();
|
||||
if (!tmpFile.delete()) {
|
||||
System.err.println("Failed to delete temp file: " + tmpFile);
|
||||
}
|
||||
}
|
||||
return outputFile;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user