Back to project page interamap.
The source code is released under:
MIT License
If you think the Android project interamap listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.richso.interamap.utils; /*ww w.j a v a 2 s. c o m*/ import android.util.Log; /** * Created with IntelliJ IDEA. * User: nikolai * Date: 8/23/13 * Time: 3:18 PM * To change this template use File | Settings | File Templates. */ public class L { public static boolean isDebug = true; private static String TAG = "APP:"; private static String CURRENT_TAG = ""; public static void i(String message){ if(isDebug) Log.i(TAG, CURRENT_TAG + message); } public static void e(String message){ if(isDebug) Log.e(TAG, CURRENT_TAG + message); } public static void w(String message){ if(isDebug) Log.w(TAG, CURRENT_TAG + message); } public static void setTag(String tag) { CURRENT_TAG = tag + " : "; } }