I believe that we can use master theorem with this recurrence T(n) = 2T(n/2) + nlogn
The provided recurrence is of the form T (n) = a T(n/b) + theta (nk logpn) where a>=1, b >1, k >=0, p is a real number, then:
in your example the value of a=2 and b=2 and k=1, and this means that a is equal to bk
the value of p > -1, then T (n) = Theta (nlogba log p+1 n)
So, after applying the master theorem:
T (n) = Theta ( n ^ log22 log 2 n) => Theta (nlog2n )