gitlab4j-api icon indicating copy to clipboard operation
gitlab4j-api copied to clipboard

Replace uses of java.logging with system.logging

Open Sineaggi opened this issue 1 year ago • 0 comments

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

Sineaggi avatar Apr 23 '24 22:04 Sineaggi