Rémi Forax
Rémi Forax
The maven artifacts all use the same java package (`com.google.common.flogger`) but are separate jars, which is a problem in Java 9 with the Module system enabled (JPMS).
I think there is an issue in your implementation when the configuration is changed dynamically. Your implementation read the configuration twice, once in `at(Level)` and once later in `log()` so...
Gradle that uses your code doesn't work with latest build of jdk9 jigsaw (build 136 on 09-15-2016 ) https://jdk9.java.net/jigsaw/ because trying to to remove the unmodifiableMap wrapper of the return...