I found several places on Internet where they mention that using the method
Throwable.printStackTrace()
in your Android application poses a security risk (and that is also bad coding practice.) I would like to understand why is it a security risk? What could an attacker do using the information provided by
e.printStackTrace();
where e is of type Exception, for instance?