Another approach is to use the Master Theorem (or on Wikipedia). For most recurrences it is applicable and provides the answer very fast.
It basically gives you three categories and then the answer falls out. Given a recurrence of the form T (n) = aT (n/b) + f (n) we look for a,b, and f(n). In your case we have a=1, b=2, f(n)=log n.
Therefore (you have to look at the referenced links) we fall into Case 2, where f(n) is in Theta(n^(log_b(a-eps)) log^k(n)) = Theta(n^0 log(n)), then the Master Theorem states that T(n) is in Theta(n^(log_b(a-eps)) log^(k+1)(n)) = Theta(log^2(n))