Consider the following integral $$\int_{-\infty}^\infty \int_{-\infty}^\infty \frac{e^{-x^2-y^2}}{|x^2+y^2-1|^{0.6}} dxdy.$$ By changing to polar coordinate analytically and putting the result into Mathematica, the result is 6.589.
However, I tried to numerically integrate this directly:
int = Exp[-x^2 - y^2]/Abs[x^2 + y^2 - 1]^0.6 NIntegrate[int, {x, -Infinity, Infinity}, {y, -Infinity, Infinity}] Then, it throws the following error:
Next, I tried to handle the singularity as follows:
NIntegrate[int, {x, -Infinity, Infinity}, {y, -Infinity, Infinity}, Exclusions -> x^2 + y^2 == 1] However, again I obtain an error with inaccurate result 2.56. 
Curiously, changing the exponent 0.6 to 0.5 gives an accurate result for both with and without Exclusions option.
Why this happen, and why putting Exclusion option is ineffective? How can I evaluate this integral accurately?

