Easy Tag Write(3.2)
Posted nowmorning
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Easy Tag Write(3.2)相关的知识,希望对你有一定的参考价值。
package skyseraph.android.util; /** * @Title : LogUtil.java * @Package : tcl.nfc.phone.util * @ClassName : LogUtil * @Description : 通用调试类 * @author : [email protected] * @date : 2013-5-16 上午9:22:43 * @version : V1.2 */ public class LogUtil { public static void v(String tag, String msg) { if (MyConstant.isVerbose) { android.util.Log.v(tag, msg); } } public static void v(String tag, String msg, Throwable t) { if (MyConstant.isVerbose) { android.util.Log.v(tag, msg, t); } } public static void d(String tag, String msg) { if (MyConstant.isDebug) { android.util.Log.d(tag, msg); } } public static void d(String tag, String msg, Throwable t) { if (MyConstant.isDebug) { android.util.Log.d(tag, msg, t); } } public static void i(String tag, String msg) { if (MyConstant.isInformation) { android.util.Log.i(tag, msg); } } public static void i(String tag, String msg, Throwable t) { if (MyConstant.isInformation) { android.util.Log.i(tag, msg, t); } } public static void w(String tag, String msg) { if (MyConstant.isWarning) { android.util.Log.w(tag, msg); } } public static void w(String tag, String msg, Throwable t) { if (MyConstant.isWarning) { android.util.Log.w(tag, msg, t); } } public static void e(String tag, String msg) { if (MyConstant.isError) { android.util.Log.e(tag, msg); } } public static void e(String tag, String msg, Throwable t) { if (MyConstant.isError) { android.util.Log.e(tag, msg, t); } } }
以上是关于Easy Tag Write(3.2)的主要内容,如果未能解决你的问题,请参考以下文章
[TIA PORTAL][CONVERT] Convert Char Array to DInt...DInt to Char Array..Useful and easy function(代码片段
Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段
Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段