We have a recurrence as follows:
$$T(n) = 2T\left(\sqrt{n}\right) + \log n$$
Renaming $m = \log n$ yields
$$T(2^m) = 2T(2^{\frac{m}{2}}) + m$$
Renaming $S(m) = T(2^m)$ new recurrence becomes:
$$S(m) = 2S\left(\frac{m}{2}\right) + m$$
How does this $T(2^{\frac{m}{2}})$ become $S\left(\frac{m}{2}\right)$?