platformLoggingPlugin
fun <S : MVIState, I : MVIIntent, A : MVIAction> platformLoggingPlugin(tag: String? = null, level: StoreLogLevel? = null): LazyPlugin<S, I, A>
Deprecated
Just use logging plugin from now on
Replace with
loggingPlugin(tag = tag, level = level)
Content copied to clipboard
Creates a loggingPlugin that is suitable for each targeted platform. This plugin will log to:
Logcat on Android,
NSLog on apple targets,
console.log on JS,
stdout on mingw/native
System.out on JVM.