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

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

buildDestinationStream