]> git.mxchange.org Git - jcore.git/commitdiff
A warning was to harsh here
authorRoland Haeder <roland@mxchange.org>
Wed, 2 Sep 2015 08:38:09 +0000 (10:38 +0200)
committerRoland Haeder <roland@mxchange.org>
Wed, 2 Sep 2015 08:38:09 +0000 (10:38 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/org/mxchange/jcore/BaseFrameworkSystem.java

index b48ad50e49d6a32faf7699efc7e860a0cfc2e47b..b910913123b72d9121277f281fe99fcb00c14713 100644 (file)
@@ -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<? extends FrameworkInterface> 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<? extends FrameworkInterface> c = this.getClassFromTarget(instance, "BaseFrameworkSystem"); //NOI18N