Replace uses of java.logging with system.logging
Sineaggi opened this issue · 0 comments
Sineaggi commented
In java 9+, java.util.logging was made it's own module. To simplify our dependency graph, we could replace uses of java.util.logging.Logger with java.lang.System.Logger.
This logger will fall back to java.util.logger if that module is on the runtime module-path, otherwise users can provide their own implementation such as slf4j or log4j