consoleLoggingPlugin

fun <S : MVIState, I : MVIIntent, A : MVIAction> consoleLoggingPlugin(tag: String? = null, level: StoreLogLevel? = null): LazyPlugin<S, I, A>

Deprecated

Just use logging plugin from now on

Replace with

loggingPlugin(tag, name, level)

A logging plugin that prints logs to the console using println. Tag is not used except for naming the plugin.

See also