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 d(String msg) { if (isShow) { Log.d(TAG, msg); } } public static void d(String tag, String msg) { if (isShow) { Log.d(tag, msg); } } }