You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: