From: Roland Haeder Date: Wed, 2 Sep 2015 08:38:09 +0000 (+0200) Subject: A warning was to harsh here X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fdfd76c14af21f19440c8f78d9f721db9df9c260;p=jcore.git A warning was to harsh here Signed-off-by:Roland Häder --- 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