When using JBoss Log Manager as the log manager (which for instance is used by the Quarkus framework), when trying to connect the driver throws a SQLException caused by the call here to Logger.setParent .
This happens because the JBoss Logger implementation for some reason doesn't support setParent and unconditionally throws a SecurityException. But this prevents using the JDBC driver in Quarkus applications, so it would nice if it could be patched to support it, even if just try-catching the setParent call and silently ignoring this error.
Thanks