Skip to content

Commit

Permalink
openrewrite#936 fix debug log message
Browse files Browse the repository at this point in the history
  • Loading branch information
reisners committed Jan 28, 2025
1 parent 04d2104 commit b09a186
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ private Stream<SourceFile> processTestSources(
Stream<SourceFile> parsedKotlin = Stream.empty();
if (!testKotlinSources.isEmpty()) {
parsedKotlin = kotlinParserBuilder.build().parse(testKotlinSources, baseDir, ctx);
logDebug(mavenProject, "Scanned " + testKotlinSources.size() + " kotlin source files in main scope.");
logDebug(mavenProject, "Scanned " + testKotlinSources.size() + " kotlin source files in test scope.");
}

List<Marker> markers = new ArrayList<>(projectProvenance);
Expand Down

0 comments on commit b09a186

Please sign in to comment.