Skip to content

Commit

Permalink
GEOT-5522: App-schema warnings log too verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
riniangreani committed Sep 16, 2016
1 parent d3d878b commit fee9d9c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ private AttributeType createType(final Name assignedName,
superType = getAttributeType(baseTypeName, baseType, crs);
}
} else {
LOGGER.warning(assignedName + " has no super type");
LOGGER.fine(assignedName + " has no super type");
}

if (typeDefinition instanceof XSDComplexTypeDefinition) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ private static QName deglose(final String prefixedName, final AttributeDescripto
prefix = XMLConstants.DEFAULT_NS_PREFIX;
} else {
if (!localName.equals(rootName.getLocalPart())) {
LOGGER.warning("Using root's namespace " + defaultNamespace
LOGGER.fine("Using root's namespace " + defaultNamespace
+ " for step named '" + localName + "', as no prefix was stated");
}
prefix = namespaces.getPrefix(defaultNamespace);
Expand Down

0 comments on commit fee9d9c

Please sign in to comment.