LoggerUtils

Posted z_fishLong

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LoggerUtils相关的知识,希望对你有一定的参考价值。

import android.util.Log;

public class Logger 

    private static final String TAG = "UniCarGUI";

    public static boolean DEBUG = true;

    public static void i(String msg) 
        if (DEBUG) 
            Log.i(TAG, msg);
        
    

    public static void i(String tag, String msg) 
        if (DEBUG) Log.i(tag, msg);
    

    public static void v(String tag, String msg) 
        if (DEBUG) Log.v(tag, msg);
    

    public static void d(Object obj) 
        if (DEBUG) Log.d(TAG, obj.toString());
    

    public static void d(String tag, String msg) 
        if (DEBUG) Log.d(tag,msg);
    

    public static void d(String msg) 
        if (DEBUG) Log.d(TAG, msg);
    

    public static void d(String tag, Exception e) 
        Log.d(tag, e.toString());
    

    public static void w(String msg) 
        if (DEBUG) Log.w(TAG, msg);
    

    public static void w(String tag, String string) 
        if (DEBUG) Log.w(tag, string);
    

    public static void e(String msg) 
        if (DEBUG) 
            Log.e(TAG, msg);
        
    

    public static void e(String tag, String msg) 
        if (DEBUG) Log.e(tag, msg);
    

    public static void e(String tag, String msg, Throwable tr) 
        if (DEBUG) Log.e(tag, msg, tr);
    

    public static void printStackTrace(Exception e) 
        if (DEBUG) Log.e(TAG, e.toString());
    
    

以上是关于LoggerUtils的主要内容,如果未能解决你的问题,请参考以下文章