androidLoggingPlugin
fun <S : MVIState, I : MVIIntent, A : MVIAction> androidLoggingPlugin(tag: String? = null, level: Int? = null): LazyPlugin<S, I, A>
Deprecated
Just use logging plugin
Replace with
loggingPlugin(tag = tag, level = level)
Content copied to clipboard
Create a new loggingPlugin that prints using android's Log.
fun <S : MVIState, I : MVIIntent, A : MVIAction> StoreBuilder<S, I, A>.androidLoggingPlugin(name: String? = null, level: Int? = null)
Deprecated
Just use logging plugin
Replace with
enableLogging(name = name, level = level)
Content copied to clipboard
Create a new loggingPlugin that prints using android's Log.