File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
plugins/kapt/kapt-base/src/org/jetbrains/kotlin/kapt/base Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -196,18 +196,17 @@ fun KaptOptions.logString(additionalInfo: String = "") = buildString {
196
196
197
197
appendLine(" Annotation processing mode: ${mode.stringValue} " )
198
198
appendLine(" Memory leak detection mode: ${detectMemoryLeaks.stringValue} " )
199
- KaptFlag .values().forEach { appendLine(it.description + " : " + this @logString[it]) }
199
+ for (flag in KaptFlag .entries) {
200
+ appendLine(flag.description + " : " + get(flag))
201
+ }
200
202
201
203
appendLine(" Project base dir: $projectBaseDir " )
202
- appendLine(" Compile classpath: " + compileClasspath.joinToString())
203
- appendLine(" Java source roots: " + javaSourceRoots.joinToString())
204
204
205
205
appendLine(" Sources output directory: $sourcesOutputDir " )
206
206
appendLine(" Class files output directory: $classesOutputDir " )
207
207
appendLine(" Stubs output directory: $stubsOutputDir " )
208
208
appendLine(" Incremental data output directory: $incrementalDataOutputDir " )
209
209
210
- appendLine(" Annotation processing classpath: " + processingClasspath.joinToString())
211
210
appendLine(" Annotation processors: " + processors.joinToString())
212
211
213
212
appendLine(" AP options: $processingOptions " )
You can’t perform that action at this time.
0 commit comments