The question is, which grows faster: $f(n) = \log{n}$ or $g(n) = n^{0.3219}$?
I'll present an alternative analysis. Let's take the derivative of each function to find out, because if one function's derivative is always greater than the other one we know that function grows faster.
$$f^\prime(n) = \frac{1}{n\ln{10}} = \frac{1}{\ln{10}}n^{-1}
\\ g^\prime(n) = 0.3219n^{-0.6781}$$
$-0.6781 > -1$, so despite the constants $g^\prime(n) > f^\prime(n)$ above a certain n value. This would indicate that the power function will grow faster than the logarithmic one.