diff --git a/gradle/report.gradle.kts b/gradle/report.gradle.kts index 840173f52e6..93241645f2e 100644 --- a/gradle/report.gradle.kts +++ b/gradle/report.gradle.kts @@ -94,14 +94,14 @@ private class BuildTimeReporter( val totalTimeSec = totalTimeNs.toDouble() / secondInNs if (totalTimeSec < 1) return - log.warn("Build time for tasks:") + log.info("Build time for tasks:") for (category in TaskCategory.values()) { val timeNs = categoryTimeNs[category] ?: 0L val timeSec = timeNs.toDouble() / secondInNs if (timeSec < 1) continue val percent = timeSec / totalTimeSec * 100 - log.warn("${category.description()}: ${timeSec.asShortString()}s (${percent.asShortString()}% of total time)") + log.info("${category.description()}: ${timeSec.asShortString()}s (${percent.asShortString()}% of total time)") } } -} \ No newline at end of file +}