从 logcat 输出中提取消息部分(Eclipse 或其他)
有人知道如何从 Eclipse 或通过命令行附加来复制/导出 logcat 输出的“消息”部分吗?我经常需要只导出日志记录语句,而无需导出所有时间戳、pid 和标签信息。例如:
02-25 12:35:13.083: INFO/System.out(2272): URL Requested: http://...
我不需要或不想要 02-25 12:35:13.083: INFO/System.out(2272):
部分。似乎我也不应该编写脚本来后处理输出。
让我发疯有一段时间了,谢谢!
Anybody out there know how to copy/export just the "Message" portion of the logcat output either from Eclipse or attached via the command line? I often need to just export the logging statements without all the timestamp, pid, and tag information as well. For example:
02-25 12:35:13.083: INFO/System.out(2272): URL Requested: http://...
I don't need or want the 02-25 12:35:13.083: INFO/System.out(2272):
portion. Seems like I shouldn't have to write a script to post-process the output, either.
Been driving me nuts for awhile now, thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从一个像样的 shell 环境(linux、osx、cygwin 或 msys 或者在紧要关头使用设备本身上的 adb shell)运行 logcat,并将其通过管道传输到 awk 或 sed,可能是在 grep 出您关心的消息类别和 PID 之后。
Run logcat from a decent shell environment (linux, osx, cygwin or msys or in a pinch use the adb shell on the device itself), and pipe it into awk or sed, probably after grepping for the category of message and PID you care about.