Here you can find the source of logException(String tag, Throwable ex)
public static void logException(String tag, Throwable ex)
//package com.java2s; import android.util.Log; public class Main { public static void logException(String tag, Throwable ex) { Log.e(tag, ex.getLocalizedMessage(), ex); }/* w w w.j a va 2s . c o m*/ }