안드로이드(이클립스)/막 써
-
로그 한번에 끄기 켜기안드로이드(이클립스)/막 써 2015. 12. 23. 00:50
OverseeLog.java===============================================================================================================import android.util.Log; public class OverseeLog { /** Disable Log *///public static boolean E = false; /** Enable Log */public static final boolean E = true; /** * Error Log * @param tag tag name * @param msg content */public static void e(String tag, String msg) {if (E ..