Move kotlin-build-statistic project to :compiler

This commit is contained in:
Nataliya.Valtman
2023-04-18 03:49:29 +02:00
committed by Space Team
parent e34dd043da
commit 2a391f7330
53 changed files with 166 additions and 249 deletions
@@ -0,0 +1,15 @@
/*
* Copyright 2010-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.compilerRunner
interface KotlinLogger {
val isDebugEnabled: Boolean
fun error(msg: String, throwable: Throwable? = null)
fun warn(msg: String)
fun info(msg: String)
fun debug(msg: String)
fun lifecycle(msg: String)
}