Back to project page sqlite-provider.
The source code is released under:
Apache License
If you think the Android project sqlite-provider 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.novoda.sqliteprovider.demo.util; /*from w ww . j a v a 2 s .c om*/ public final class Log { private static final String TAG = "SQLiteProviderDemo"; private Log(){ } public static void i(String msg){ android.util.Log.i(TAG, msg); } public static void e(String msg) { android.util.Log.e(TAG, msg); } public static void e(String msg, Exception e) { android.util.Log.e(TAG, msg, e); } }