从 logcat 输出中提取消息部分(Eclipse 或其他)

发布于 2024-10-19 19:10:04 字数 308 浏览 1 评论 0原文

有人知道如何从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木有鱼丸 2024-10-26 19:10:04

从一个像样的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文