/** * @tsplus static effect/core/io/Logger.Ops simple */ export function simple(log: (a: A) => B): Logger { return { apply: ( _fiberId, _logLevel, message, _cause, _context, _spans, _annotations ) => log(message) } }