Skip to:
The SignatureValidator uses the wrong (JUL) Logger implementation:
private final java.util.logging.Logger log = LoggerFactory.getLogger(SignatureValidator.class);
it should be:
private final Logger log = LoggerFactory.getLogger(SignatureValidator.class);
Can you double check this? I don't see any class using JUL.
The SignatureValidator uses the wrong (JUL) Logger implementation:
private final java.util.logging.Logger log = LoggerFactory.getLogger(SignatureValidator.class);
it should be:
private final Logger log = LoggerFactory.getLogger(SignatureValidator.class);