Back to project page Palette.
The source code is released under:
GNU General Public License
If you think the Android project Palette 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.fiskur.palette; //w ww. j a va2 s .c o m import android.util.Log; public class L { private static final String TAG = "Palette"; public static void l(String message){ Log.d(TAG, message); } public static void l(String tag, String message){ Log.d(tag, message); } public static void e(String message){ Log.e(TAG, message); } public static void e(String tag, String message){ Log.e(tag, message); } }