Back to project page mnemonicmajorsystem-android.
The source code is released under:
Apache License
If you think the Android project mnemonicmajorsystem-android 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.demimojo.majorsystem.quiz.utils; /* w w w . ja v a2 s .c om*/ import android.util.Log; /** * Created by mojosaurus on 13/9/14. */ public class Logger { public static void i(String component, String message) { Log.i(component, message); } public static void d(String component, String message) { Log.d(component, message); } public static void e(String component, String message) { Log.e(component, message); } }