* use SEVERE warning when clutter file filter is unavailable

This commit is contained in:
Reinhard Pointner 2015-07-25 22:46:14 +00:00
parent b38d9768fc
commit e6eef706e4
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ public class MediaDetection {
try {
clutterFile = releaseInfo.getClutterFileFilter();
} catch (IOException e) {
Logger.getLogger(MediaDetection.class.getClass().getName()).log(Level.WARNING, "Unable to access clutter file filter: " + e.getMessage(), e);
Logger.getLogger(MediaDetection.class.getClass().getName()).log(Level.SEVERE, "Unable to access clutter file filter: " + e.getMessage(), e);
return ((File f) -> false);
}
}