Back to project page GreenGear.
The source code is released under:
MIT License
If you think the Android project GreenGear 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.bradleycurran.greengear.util; //w w w . ja v a2s.co m /** * A basic log wrapper. * For now it just delegates to the default android.util version. * But _some_day_ it will do MORE! * (insert obligatory maniacal laugh here) * * @author Bradley Curran */ public class Log { public static void e(String tag, String msg) { android.util.Log.e(tag, msg); } public static void e(String tag, String msg, Throwable tr) { android.util.Log.e(tag, msg, tr); } }