fun err()

in src/main/kotlin/rules_intellij/worker/WorkerLogger.kt [41:51]


    fun err(tag: String, e: Exception) {
        log(tag, out) {
            e.printStackTrace(it)
            it.println(e)
        }
        log(tag, System.err) {
            e.printStackTrace(it)
            it.println(e)
        }
        exitProcess(1)
    }