Android Exception Log logException(String tag, Throwable ex)

Here you can find the source of logException(String tag, Throwable ex)

Description

log Exception

Declaration

public static void logException(String tag, Throwable ex) 

Method Source Code

//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*/
}

Related

  1. showException(Context parent, Throwable ex)