fixed logging level when files cannot be deleted

Former-commit-id: d62acbe447b5cc78b992d910c9431c006e658b2e
This commit is contained in:
Jeremy Long
2014-11-05 06:19:14 -05:00
parent 35ed3a51e5
commit 2024881ee1

View File

@@ -78,7 +78,7 @@ public final class FileUtils {
if (!org.apache.commons.io.FileUtils.deleteQuietly(file)) {
success = false;
final String msg = String.format("Failed to delete file: %s; attempting to delete on exit.", file.getPath());
LOGGER.log(Level.FINE, msg);
LOGGER.log(Level.INFO, msg);
file.deleteOnExit();
}
return success;