Find eager log-message construction
Recipe ID
org.openrewrite.kotlin.logging.FindEagerLogMessages$KtRecipeArtifact
io.moderne.recipe:recipes-kotlinBundles the trace/debug/info/warn/error eager-interpolation and string-concatenation finders. Every hit is a candidate for migration to kotlin-logging's lambda form (log.debug { "..." }) or SLF4J's parameterized form (log.debug("x={}", x)).
Usage
This recipe has no required configuration options. You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.kotlin.logging.FindEagerLogMessages$KtRecipeIf the recipe isn’t available locally, install it with:
mod config recipes jar install io.moderne.recipe:recipes-kotlin:0.2.0Definition
This recipe runs the following recipes in order.
- Find eager string interpolation in
log.trace(...)org.openrewrite.kotlin.logging.FindEagerStringInterpolationInLogTrace$KtRecipe - Find eager string interpolation in
log.debug(...)org.openrewrite.kotlin.logging.FindEagerStringInterpolationInLogDebug$KtRecipe - Find eager string interpolation in
log.info(...)org.openrewrite.kotlin.logging.FindEagerStringInterpolationInLogInfo$KtRecipe - Find eager string interpolation in
log.warn(...)org.openrewrite.kotlin.logging.FindEagerStringInterpolationInLogWarn$KtRecipe - Find eager string interpolation in
log.error(...)org.openrewrite.kotlin.logging.FindEagerStringInterpolationInLogError$KtRecipe - Find string concatenation in
log.trace(...)org.openrewrite.kotlin.logging.FindStringConcatInLogTrace$KtRecipe - Find string concatenation in
log.debug(...)org.openrewrite.kotlin.logging.FindStringConcatInLogDebug$KtRecipe - Find string concatenation in
log.info(...)org.openrewrite.kotlin.logging.FindStringConcatInLogInfo$KtRecipe - Find string concatenation in
log.warn(...)org.openrewrite.kotlin.logging.FindStringConcatInLogWarn$KtRecipe - Find string concatenation in
log.error(...)org.openrewrite.kotlin.logging.FindStringConcatInLogError$KtRecipe
Data tables
Structured output this recipe can produce.
- Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats