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