unity通过android adb查看真机日志

前几天跑某大公司面试,问我会不会在android真机调试的时候直接输出到控制台,当时有点懵逼,居然不知道控制台是什么东西了,居然理解成了输出到eclipse...我觉得程序没有通过eclipse打包,怎么可能输出到它里面去呢...等面试完了,回公司的路上才回过神来,那个黑框框不就是控制台么!!!


adb是androidSDK的一个工具,位置就在sdk目录下的platform-tools文件夹下。


通过adb,不仅可以查看在Unity中自己设定的打印信息,包括系统信息和异常都能获取到。是android开发的一个神器!


因为最近的某些游戏中的需求在搞android代码,很多都需要再真机上测试,eclipse又不知道怎么看日志,所以就一直用adb


打开控制台,输入如下命令:

adb logcat -s Unity -d > xxx.txt

运行以后,unity中的所有输出都会保存到目标文件中(注意填写完整路径)

其中Unity是过滤用的tag,unity中的所有输出都是“Unity”

如果要按等级进行查看,比如说只看错误信息,并且直接显示在控制台,可以这样写

adb logcat -s Unity:e

要查看所有的错误信息,包括系统的,那就这样写

adb logcat -s *:e


下面是adb logcat的帮助信息:

  1. octopus@octopus:~$ adb logcat --help    
  2. Usage: logcat [options] [filterspecs]    
  3. options include:    
  4.   -s              Set default filter to silent.    
  5.                   Like specifying filterspec '*:s'    
  6.   -f <filename>   Log to file. Default to stdout    
  7.   -r [<kbytes>]   Rotate log every kbytes. (16 if unspecified). Requires -f    
  8.   -n <count>      Sets max number of rotated logs to <count>, default 4    
  9.   -v <format>     Sets the log print format, where <format> is one of:    
  10.     
  11.                   brief process tag thread raw time threadtime long    
  12.     
  13.   -c              clear (flush) the entire log and exit    
  14.   -d              dump the log and then exit (don't block)    
  15.   -t <count>      print only the most recent <count> lines (implies -d)    
  16.   -g              get the size of the log's ring buffer and exit    
  17.   -b <buffer>     Request alternate ring buffer, 'main', 'system', 'radio'    
  18.                   or 'events'. Multiple -b parameters are allowed and the    
  19.                   results are interleaved. The default is -b main -b system.    
  20.   -B              output the log in binary    
  21. filterspecs are a series of     
  22.   <tag>[:priority]    
  23.     
  24. where <tag> is a log component tag (or * for all) and priority is:    
  25.   V    Verbose    
  26.   D    Debug    
  27.   I    Info    
  28.   W    Warn    
  29.   E    Error    
  30.   F    Fatal    
  31.   S    Silent (supress all output)    
  32.     
  33. '*' means '*:d' and <tag> by itself means <tag>:v    
  34.     
  35. If not specified on the commandline, filterspec is set from ANDROID_LOG_TAGS.    
  36. If no filterspec is found, filter defaults to '*:I'    
  37.     
  38. If not specified with -v, format is set from ANDROID_PRINTF_LOG    
  39. or defaults to "brief"    


没用过的可以尝试一下,注意adb命令,需要配置环境变量,如果不配置环境变量,就直接写adb.exe的完整路径
  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值