Decrease logging verbosity in FileUtils.readFile(File)

This commit is contained in:
Florian Schmaus 2015-01-06 16:11:57 +01:00
parent 525fece291
commit b23df7d2b8
1 changed files with 3 additions and 1 deletions

View File

@ -124,7 +124,9 @@ public final class FileUtils {
public static String readFile(File file) {
try {
return readFileOrThrow(file);
} catch (Exception e) {
} catch (FileNotFoundException e) {
LOGGER.log(Level.FINE, "readFile", e);
} catch (IOException e) {
LOGGER.log(Level.WARNING, "readFile", e);
}
return null;