I'm trying to use Openllet in a Java EE application running in Wildfly/Thorntail. This is currently not possible because Openllet calls java.util.logging.Logger#setParent(Logger) which is not allowed by Wildfly:
Caused by: java.lang.SecurityException: setParent() disallowed
at org.jboss.logmanager.Logger.setParent(Logger.java:359)
at openllet.core.boxes.tbox.impl.TgBox.(TgBox.java:60)
... 82 more
I would it remove myself, but I looks like that Openllet does some more things with its logging, therefore I'm not sure about potential side effects...
I'm trying to use Openllet in a Java EE application running in Wildfly/Thorntail. This is currently not possible because Openllet calls
java.util.logging.Logger#setParent(Logger)
which is not allowed by Wildfly:I would it remove myself, but I looks like that Openllet does some more things with its logging, therefore I'm not sure about potential side effects...