in MobiusCore/Source/MobiusLogger.swift [42:56]
func willUpdate(model: Model, event: Event)
/// Called right after the `Update` function is called.
///
/// This method mustn't block, as it'll hinder the loop from running. It will be called on the
/// same thread as the update function.
///
/// - Parameters:
/// - model: the model that was passed to update
/// - event: the event that was passed to update
/// - result: the `Next` that update returned
func didUpdate(model: Model, event: Event, next: Next<Model, Effect>)
}
public extension MobiusLogger {