log FileNotFoundException when checking if directory is writable or not: #343

master
cpfeiffer 2016-06-27 21:29:39 +02:00
parent e70a2290c3
commit 56615de1f0
1 changed files with 1 additions and 0 deletions

View File

@ -116,6 +116,7 @@ public class FileUtils {
file.delete();
return true;
} catch (FileNotFoundException e) {
GB.log("Cannot write to directory: " + dir.getAbsolutePath(), GB.INFO, e);
return false;
}
}