com.github.insanusmokrassar.AutoPostTelegramBot.utils.extensions.Throwable.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of AutoPostTelegramBot Show documentation
Show all versions of AutoPostTelegramBot Show documentation
It is base library for creating smart bot for simple management of channels posts
package com.github.insanusmokrassar.AutoPostTelegramBot.utils.extensions
import java.io.ByteArrayOutputStream
import java.io.PrintStream
fun Throwable.collectStackTrace(): String {
return ByteArrayOutputStream().also {
printStackTrace(PrintStream(it))
}.toString(Charsets.UTF_8.toString())
}