From fdfd76c14af21f19440c8f78d9f721db9df9c260 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Wed, 2 Sep 2015 10:38:09 +0200 Subject: [PATCH] =?utf8?q?A=20warning=20was=20to=20harsh=20here=20Signed-o?= =?utf8?q?ff-by:Roland=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/org/mxchange/jcore/BaseFrameworkSystem.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/org/mxchange/jcore/BaseFrameworkSystem.java b/src/org/mxchange/jcore/BaseFrameworkSystem.java index b48ad50..b910913 100644 --- a/src/org/mxchange/jcore/BaseFrameworkSystem.java +++ b/src/org/mxchange/jcore/BaseFrameworkSystem.java @@ -234,7 +234,7 @@ public class BaseFrameworkSystem implements FrameworkInterface { method = c.getDeclaredMethod(methodName, new Class[0]); } catch (final NoSuchMethodException e) { // Didn't found it - this.getLogger().warn(e); + this.getLogger().debug(e); // So try it from super class Class c = this.getClassFromTarget(instance, "BaseFrameworkSystem"); //NOI18N @@ -278,7 +278,7 @@ public class BaseFrameworkSystem implements FrameworkInterface { method = c.getDeclaredMethod(methodName, type); } catch (final NoSuchMethodException e) { // Didn't found it - this.getLogger().warn(e); + this.getLogger().debug(e); // So try it from super class Class c = this.getClassFromTarget(instance, "BaseFrameworkSystem"); //NOI18N -- 2.39.5