Back to project page androidcomplete.
The source code is released under:
MIT License
If you think the Android project androidcomplete 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.core.helpers; //from ww w .ja v a2 s.c o m import android.util.Log; public class LogHelper { public static String TAG = null; public LogHelper(String tagName){ TAG = tagName; } public void logDebug(String message){ Log.d(TAG, message); } public void logError(String message){ Log.d(TAG, message); } public void logWarning(String message){ Log.d(TAG, message); } public void logInfo(String message){ Log.d(TAG, message); } }