Android 常用代码---日志

来源:互联网 发布:淘宝和飞牛网价格对比 编辑:程序博客网 时间:2024/06/11 19:42
1记录“错误”消息权限代码Log.e("YourIdentifier","This is an error message");2记录“警告”消息权限代码Log.w("YourIdentifier","This is a warning message");3记录“资讯”消息权限代码Log.i("YourIdentifier","This is an information message");4记录“调试”消息权限代码Log.d("YourIdentifier","This is a debug message");
原创粉丝点击