Java tutorial
//package com.java2s; //License from project: Apache License import android.util.Log; public class Main { private static final String TAG = "LogUtil"; private static boolean isShow = true; public static void i(String tag, String msg) { if (isShow) { Log.i(tag, msg); } } public static void i(String msg) { if (isShow) { Log.i(TAG, msg); } } }