pub fn with_debug<E>( effect: E, ) -> impl Effect<Output = E::Output, Error = MapReduceError, Env = MapEnv>where E: Effect<Error = MapReduceError, Env = MapEnv>,
Run an effect with debug mode enabled.
Sets the “debug” config value to true for the duration of the effect.
let effect = with_debug(execute_commands(commands));