in src/main/java/org/apache/sling/jcr/resource/internal/helper/jcr/JcrNodeResourceMetadata.java [88:96]
private void report(final RepositoryException re) {
String nodePath = "<unknown node path>";
try {
nodePath = contentNode != null ? contentNode.getPath() : node.getPath();
} catch (RepositoryException e) {
// ignore
}
LOGGER.info("setMetaData: Problem extracting metadata information for {}", nodePath, re);
}