Your inequality can be improved. The $\exp(x)$ is strictly convex.
(Because the second derivative is positive).
If you no nothing about convexity, you can take the argument that if Hessian is a positive definite of the function then you can use Taylor (1685-1731) series and use a reminder in a Lagrange form and lower bound value of quadratic form from the Hessian by zero.
In any case you should come in some way to notation: $f(x) > f(x_0)+\langle \nabla f(x),x-x_0\rangle$, or in case when function image is $\mathbb{R}$ you will have: $f(x)>f(x_0) + f'(x_0)(x-x_0)$. Now you use exponent as $f$ and $x_0=0$ and so:
$exp(x)>1+1(x-0)=1+x \implies \forall x>-1,\ln(1+x)<x$
#!/usr/bin/env python
You can visualize the functions using a python interpreter
import numpy as np
import matplotlib.pyplot as plt
x = np.arange(-1, 10, 0.01)
plt.plot (x, x)
plt.plot (x, np.log(1+x))
plt.grid ( True )
plt.show ( )