Android Log LogE(String tag, String message)

Here you can find the source of LogE(String tag, String message)

Description

Log E

Declaration

public static String LogE(String tag, String message) 

Method Source Code

//package com.java2s;

import android.util.Log;

public class Main {
    public static String LogE(String tag, String message) {
        Log.e(tag, message);/*  w w  w .j a  v  a  2  s  .com*/
        return message;
    }
}

Related

  1. log(String text)
  2. logError(Object errorClass, String msg, Exception e)
  3. logError(String errorClass, String msg, Exception e)
  4. e(Class clazz, String message)
  5. write(String path, String log)
  6. debug(Object msg)
  7. debug(Object msg, Object msg2)
  8. debug(Throwable e)
  9. debugLsDir(String dir)