Back to project page tapad-android-sdk.
The source code is released under:
MIT License
If you think the Android project tapad-android-sdk 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.tapad.util; //from w w w.j ava 2 s.c o m import android.util.Log; public class Logging { private static final boolean enabled = false; public static void info(String tag, String message) { if (enabled) Log.i(tag, message); } public static void warn(String tag, String message) { if (enabled) Log.w(tag, message); } public static void error(String tag, String message) { if (enabled) Log.e(tag, message); } }