You should be delighted by the CORDIC approach to elementary functions computation.
log10(x){
z = 0;
for ( i=1; i=<B; i++ ){
if (x > 1)
x = x - x*2^(-i);
z = z - log10(1-2^(-i));
else
x = x + x*2^(-i);
z = z - log10(1+2^(-i));
}
return(z)
}
(In this listing, B is the desired number of bits of resolution in the result.)