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
1 changed files with 1 additions and 1 deletions

View File

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