Chris Lee

Results 6 issues of Chris Lee

When upgrading past 1.10.2 'currentVersion' fails to determine the correct version from the tags, as shown below. Issue exists for 1.11.0 and 1.12.0 as well, introduced in 1.10.3. 1.10.2: ```...

Hey folks, Starting to contemplate untangling the various responsibilities in com.google.common.flogger.backend.SimpleMessageFormatter, will fork/branch here (no code created there yet): https://github.com/cslee00/flogger From an initial review SimpleMessageFormatter has the below responsibilities; expecting...

P3
type=enhancement

For awareness, working on Error Prone refactoring to migrate from other logging APIs: https://github.com/cslee00/digitalascent-errorprone-logger

P3

As with Guava, provide an automatic module name to avoid using the JAR name ('flogger') as the module name. Guava: `Automatic-Module-Name: com.google.common` Proposed for flogger: `Automatic-Module-Name: com.google.common.flogger`

P3

When writing Gradle plugins that use Kotlin DSL there is a conflict w/ resolution-rules, resulting in this error: `Cannot change attributes of dependency configuration ':apiElements-published' after it has been resolved`...

jcl104-over-slf4j is deprecated, having been renamed to org.slf4j:jcl-over-slf4j. A resolution strategy such as the below substitutes any transitive occurrence (likely to occur in legacy solutions): ` if (requested.name == "jcl104-over-slf4j")...