讲解了在Android开发中logcat使用不当导致的安全问题 原帖地址:http://drops.wooyun.org/tips/3812 0x00 科普 development version :开发版,正在开发内测的版本,会有许多调试日志. release version : 发行版,签名后开发给用户的正式版本,日志量较少. android.util.Log:提供了五种输出日志的方法 Log.e(), Log.w(), Log.i(), Log.d(), Log.v() ERROR, WA
简单日志封装类: public final class CLog { public static final boolean DEBUG = true; private CLog() { } public static void d(String tag, String desc) { if (DEBUG) Log.d(tag, desc); } public static void d(String tag, String desc, Throwable tr) { if (DEBUG) Lo
日志级别列表如下(从低到高): V — Verbose (lowest priority) D — Debug I — Info W — Warning E — Error F — Fatal S — Silent (highest priority, on which nothing is ever printed) 在类里面可以使用 Log.v log.i 等方法来记录日志,其中: 1.第一个参数为字符串类型的tag,它可以用来标识该日志的key(键), 2.第二个参数为日志内容