in src/main/kotlin/com/compiler/server/compiler/components/CompilationLogger.kt [53:58]
override fun warn(msg: String, throwable: Throwable?) {
if (isDebugEnabled) println("[WARN] $msg" + (throwable?.let { ": ${it.message}" } ?: ""))
try {
addCompilationLog(msg, ProjectSeveriry.WARNING, classNameOverride = "WARNING")
} catch (_: Exception) {}
}