All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.mu.internal.MessageInvoker.kt Maven / Gradle / Ivy

There is a newer version: 10.5.0.78949
Show newest version
package mu.internal

@Suppress("NOTHING_TO_INLINE")
internal inline fun (() -> Any?).toStringSafe(): String {
    return try {
        invoke().toString()
    } catch (e: Exception) {
        "Log message invocation failed: $e"
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy