Back to project page anti-piracy-android-app.
The source code is released under:
Apache License
If you think the Android project anti-piracy-android-app 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 mil.nga.giat.asam.util; // w w w . j av a 2s. c o m import android.util.Log; public class AsamLog { private static final boolean LOGGING = false; public static final String TAG = "ASAM:"; public static void i(String message) { if (LOGGING) { Log.i(TAG, message); } } public static void d(String message) { if (LOGGING) { Log.d(TAG, message); } } public static void v(String message) { if (LOGGING) { Log.v(TAG, message); } } public static void e(String message, Exception exception) { if (LOGGING) { Log.e(TAG, message, exception); } } }