Stream<T> logInfo(Logger log, String Function(T event) format) { return sideEffect((event) { log.info(format(event)); }); }