Hello!
We need enable logging though sl4j over standard java logging. Simplest way(from my point of view) was doing like this:
System.setProperty("java.util.logging.config.file", loggingConfig);
...
...
logger = LoggerFactory.getLogger(MyStrategy.class);
but for some reasons system not reading configuration file.
P.S.
@RequiresFullAccess set
P.S.S.
Not sure that my way will work at all:) We usually passing java.util.logging.config.file from command line.