The title is pretty self-explanatory,
I need to calculate the logit function ($x=\log(p)$): $$x-\log(1-e^x)$$ Where $x<0$,
And my problem is to approximate $$\log(1-e^x)$$
I was thinking of using the Taylor expansion: $$\log(1-t) = - \sum^{\infty}_{n=1} \frac{t^n}n\quad\text{ for } |t| < 1$$ Where $t=e^x$
But I doesn't seem to be too helpful
'my problem is to approximate' - this strongly depends on what exactly you want to do, e.g. approximate around which value. For $t \approx 0 \ \log(1-t) \sim -t +\frac{t^2}{2}$ if $t$ is positive. BTW in the expansion you gave $t=-1$ works too.