removed PrettyPrint logging

removed PrettyPrint logging
This commit is contained in:
Stanisalv 2020-11-05 14:25:41 +03:00
parent 42e3212f2c
commit 39fee79d2d
2 changed files with 4 additions and 2 deletions

View File

@ -42,7 +42,8 @@ abstract class MviViewModel<NavArgs : Parcelable, Action : ViewAction, State : V
private val mediatorStore = MediatorStore(
listOfNotNull(
LoggingMediator(this::class.simpleName!!).takeIf { BuildConfig.DEBUG }
// https://github.com/TouchInstinct/RoboSwag/issues/180
// LoggingMediator(this::class.simpleName!!).takeIf { BuildConfig.DEBUG }
)
)

View File

@ -37,7 +37,8 @@ abstract class Store<Change : StateChange, Effect : SideEffect, State : ViewStat
private val mediatorStore = MediatorStore(
listOfNotNull(
LoggingMediator(this::class.simpleName!!).takeIf { BuildConfig.DEBUG }
// https://github.com/TouchInstinct/RoboSwag/issues/180
// LoggingMediator(this::class.simpleName!!).takeIf { BuildConfig.DEBUG }
)
)