Is it a bad idea to use printStackTrace() for caugt Exceptions?

Viewed 36269

Is it a bad idea to use printStackTrace() in Android Exceptions like this?

} catch (Exception e) {
    e.printStackTrace();
}
5 Answers
Related