Java tutorial
//package com.java2s; //License from project: Open Source License import android.util.Log; public class Main { public static boolean isDebug = true; public static String TAG = "Debug"; public static void d(String msg) { if (isDebug) Log.d(TAG, msg); } public static void d(String tag, String msg) { if (isDebug) Log.d(tag, msg); } }