Back to project page RC-Devices.
The source code is released under:
GNU General Public License
If you think the Android project RC-Devices 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 pl.apcode.rcdevices; /* w ww.ja v a 2 s. c om*/ import android.util.Log; //Just a wrapper for now but in future it will feed LogActivity public class EventLogger { public static void e(String tag, String msg) { Log.e(tag, msg); } public static void e(String tag, String msg, Exception ex) { Log.e(tag, msg); if(ex != null) Log.d(tag, ex.getMessage()); } public static void i(String tag, String msg) { Log.i(tag, msg); } public static void w(String tag, String msg) { Log.w(tag, msg); } public static void d(String tag, String msg) { Log.d(tag, msg); } }