Sorry about the formatting of the title I'm not sure of the codes to make it look better.
I need to find the recurrence relation of the following:
$$T(0) = 1$$
$$T(n) = 2T\left(\left\lfloor\sqrt{n}\right\rfloor\right)+\log(n)$$
I assume this is going to be done via substitution method and through induction, but I have no idea how to set it up/solve it.
The answer is $T(n)=\theta\left(\log\,n \cdot\log\log\,n\right)$