1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

Don't show warning notifications to the user for internal warnings

This commit is contained in:
Reinhard Pointner 2016-11-25 06:27:58 +08:00
parent 934976c0a2
commit 22cbe48a8c

View File

@ -33,7 +33,7 @@ public class SystemProperty<T> {
try {
return valueFunction.apply(prop);
} catch (Exception e) {
log.logp(Level.WARNING, "SystemProperty", key, e.toString());
debug.logp(Level.WARNING, "SystemProperty", key, e.toString());
}
}