[BT] Move KotlinLogger to the bt-api module

#KT-57398 In Progress
This commit is contained in:
Alexander.Likhachev
2023-05-02 20:50:25 +02:00
committed by Space Team
parent 1005d0244a
commit 2412693ef0
6 changed files with 28 additions and 15 deletions
@@ -1,15 +0,0 @@
/*
* 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.buildtools.api
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)
}