在CMD中使用adb logcat时排除标签字符串

Exclude the tag string when using adb logcat in CMD

在CMD中使用adb logcat时,有没有办法让日志只显示我正在写入日志的字符串,而不是标签和随机数?现在,例如,它说:

"D/MainActivity( 970): myString"

我只想说 myString,其中 myString 是我想记录的任何内容。

日志记录格式固定。保存到日志中的每条记录都将包括所有字段。但是您可以控制打印哪些字段:

-v <format>     Sets the log print format, where <format> is:
--format=<format>
                  brief color epoch long monotonic printable process raw
                  tag thread threadtime time uid usec UTC year zone

raw 是您要查找的格式

adb logcat -v raw