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
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