摘要: package com.example.testlog;import android.util.Log;public class LOG { private static final String TAG = "++++"; private static final boolean ISDEBUG = true; public static void e(String content) { if (ISDEBUG) { StackTraceElement stack = (new Throwable()).getStackTrace()[1]; String classNa 阅读全文
posted @ 2013-01-12 18:33 eeLee 阅读(298) 评论(0) 推荐(0)