登录 注册
当前位置:主页 > 资源下载 > 9 > DebugLog在Android代码中的应用

DebugLog在Android代码中的应用

  • 更新:2024-12-01 09:25:14
  • 大小:1.21MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

DebugLog Create a simple and more understandable Android logs. Why? android.util.Log is the most usable library of the Android. But, when the app released on the market, some important information is clearly forgotten by the developer. All logs are disabled by DebugLog when the app is released. And plus, it provides more understandable DDMS logs for developers. Usage Traditional android.util.Log usage: public static final String TAG = "MyApp or MyClass name"; void myFunc(){ android.util