I tried to use the master theorem to solve $T(n) = 2T(\frac n 2) +\frac n {\log n}$, and I got $\frac n {\log n} \overset{?} = O(n^{1-\epsilon})$, now it looks like it should work:
$\frac n {\log n} \le cn\Rightarrow 1 \le c \log n$ which is true for every $c$, so from the master thorem $T(n)=\Theta (n)$, but I see in my notes that's it's actually not, but why?