Java Log Base 2

public static int log2(int x)
{
    return (int) (Math.log(x) / Math.log(2));
}
Cloudy Capuchin