1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-24 08:48:51 -05:00

* 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

View File

@ -88,7 +88,7 @@ public class MediaDetection {
try { try {
clutterFile = releaseInfo.getClutterFileFilter(); clutterFile = releaseInfo.getClutterFileFilter();
} catch (IOException e) { } 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); return ((File f) -> false);
} }
} }