From 22cbe48a8c05a79647c71127976ecfc03f866c95 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Fri, 25 Nov 2016 06:27:58 +0800 Subject: [PATCH] Don't show warning notifications to the user for internal warnings --- source/net/filebot/util/SystemProperty.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/filebot/util/SystemProperty.java b/source/net/filebot/util/SystemProperty.java index dd0f574d..ec65880d 100644 --- a/source/net/filebot/util/SystemProperty.java +++ b/source/net/filebot/util/SystemProperty.java @@ -33,7 +33,7 @@ public class SystemProperty { try { return valueFunction.apply(prop); } catch (Exception e) { - log.logp(Level.WARNING, "SystemProperty", key, e.toString()); + debug.logp(Level.WARNING, "SystemProperty", key, e.toString()); } }