Creates a LogLevelStreamEntry stream that writes to STDOUT at or above the minimum level

const buildDestinationStdout = (level: LogLevel, options: Omit<StreamDestination, 'destination'> = {}): LogLevelStreamEntry => {
const opts = {...prettyColorizeEnv, ...options, destination: destination({dest: 1, sync: true})}
return buildDestinationStream(level, opts);
}

buildDestinationStream