Add verbose mode to build reports

#KT-12700

Verbose mode can be enabled by adding `kotlin.build.report.verbose=true`
to `gradle.properties` file.
This commit is contained in:
Alexey Tsvetkov
2019-02-05 23:49:10 +03:00
parent 01c23510c7
commit dbdc7a5b07
24 changed files with 320 additions and 155 deletions
@@ -27,5 +27,6 @@ interface CompilationResults : Remote {
enum class CompilationResultCategory(val code: Int) {
IC_COMPILE_ITERATION(0),
IC_LOG(1)
BUILD_REPORT_LINES(1),
VERBOSE_BUILD_REPORT_LINES(2),
}