print the exception's stack trace

This commit is contained in:
Eric House 2013-09-03 06:54:13 -07:00
parent 40215337c9
commit 70fc4c448c

View file

@ -96,7 +96,7 @@ public class DbgUtils {
public static void loge( Exception exception )
{
logf( "Exception: %s", exception.toString() );
printStack();
printStack( exception.getStackTrace() );
}
public static void printStack( StackTraceElement[] trace )