I was asked, given the function $$f(x)=\ln{\left(x-\sqrt{x^{2}-1}\right)},\ x \gg 1,$$ to discuss the numerical difficulty in evaluating for the given values of x.
Would it be correct to say that, since $$\lim\limits_{x\to\infty}\left(x-\sqrt{x^{2}-1}\right)=\lim\limits_{x\to\infty}\frac{1}{x+\sqrt{x^{2}-1}}=0,$$
and due to the finite accuracy of floating point arithmetic, that there will eventually be a loss of significance that'll make the subtraction zero, and thus make the function undefined?
Is there anything else that could be said?

If you consider $$A=x-\sqrt{x^{2}-1}$$ there will be already problems because of what you properly wrote. This is why it is better to write $$A=x-\sqrt{x^{2}-1}\times \frac{x+\sqrt{x^{2}+1} } {x+\sqrt{x^{2}-1} }=\frac 1{ x+\sqrt{x^{2}-1}} \sim\frac{1}{2 x}$$ which will not make any problem; the same for $\log(A)$.