adb logcat -c    //清空以前的日志adb logcat -v time >  d:/sss.log       //将当前日志输出到d盘的sss.log中  sss.log不存在会自动创建,存在则覆盖原有的adb logcat -s “xxx”       //输出当前以xxx为TAG的日志, 过滤日志的   LOG.i("xxx","YYYYY")adb logcat   //将日志打印在当前adb 窗口
还有很多   建议LZ去看哈adb命令的使用