fun exception()

in interface/src/main/kotlin/org/jetbrains/intellij/Logger.kt [33:37]


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