Well,
f(n) = Θ(g(n))
if and only if there's a finite limit value
lim f(n)/g(n) = c > 0
n -> +inf
which means that for any constants c1 < c < c2 we can find n0 such that f(n)/g(n) will be in the [c1..c2] range for all n > n0 (put it differently c1*g(n) < f(n) < c2*g(n) when n > n0).
In your case
f(n) = n
g(n) = log(n)
The limit is (let's use L'Hôpital's rule)
lim n/log(n) = lim 1/(1/n) = lim n = +inf
n -> +inf n -> +inf n -> +inf
there's no such a finite constant c (and we can't select any c2 constant such that c < c2).