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

commonMain.com.caesarealabs.rpc4k.runtime.implementation.Rpc4K.kt Maven / Gradle / Ivy

There is a newer version: 0.13.0
Show newest version
package com.caesarealabs.rpc4k.runtime.implementation

//TODO: use loggy
public object Rpc4kLogger {
    public fun warn(msg: String, exception: Throwable? = null) {
        println("WARN: $msg")
        exception?.printStackTrace()
    }
    public fun error(msg: String, exception: Throwable? = null) {
        println("ERROR: $msg")
        exception?.printStackTrace()
    }
    public fun info(msg: String, exception: Throwable? = null) {
        println(msg)
        exception?.printStackTrace()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy