fun exception()

in interface/src/main/kotlin/org/jetbrains/intellij/ProxyLogger.kt [19:23]


    fun exception(exception: Throwable) {
        val writer = StringWriter()
        exception.printStackTrace(PrintWriter(writer))
        error(writer.toString())
    }