We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fdc495 commit b881a64Copy full SHA for b881a64
databind/src/main/java/gov/nist/secauto/metaschema/databind/AbstractModuleLoaderStrategy.java
@@ -158,7 +158,9 @@ protected IBindingMatcher registerBindingMatcher(@NonNull IBoundDefinitionModelA
158
IBindingMatcher old = bindingMatchers.put(qname, retval);
159
if (old != null && !(definition.getContainingModule() instanceof MetaschemaModelModule)) {
160
// FIXME: find existing causes of this in unit tests
161
- LOGGER.atWarn().log("Replacing matcher for QName: {}", qname);
+ if (LOGGER.isDebugEnabled()) {
162
+ LOGGER.atDebug().log("Replacing matcher for QName: {}", qname);
163
+ }
164
}
165
166
// retval = bindingMatchers.get(definition);
0 commit comments