日食 + ddms - 不要从 ddms 日志复制时间戳等?

发布于 2024-11-07 19:54:14 字数 329 浏览 2 评论 0原文

我正在使用 eclipse 插件进行 android 开发。当我从 ddms 复制/粘贴日志内容时,我总是在复制/粘贴中获取时间戳等:

05-16 21:43:09.082: INFO/ActivityManager(110): [message text]
05-16 21:43:09.152: INFO/ActivityManager(110): [message text]
...

有没有办法从粘贴中剪辑时间戳 + 调试级别 + pid,如上所示,并且只获取 [消息文本]复制的?有时将日志详细信息发送给其他人时会很烦人,因为他们看起来有点吵,

谢谢

I'm using the eclipse plugin for android development. When I copy/paste log contents from ddms, I always get the timestamp etc in the copy/paste:

05-16 21:43:09.082: INFO/ActivityManager(110): [message text]
05-16 21:43:09.152: INFO/ActivityManager(110): [message text]
...

Is there any way to clip the timestamp + debug level + pid from the paste as seen above, and only get the [message text] copied? It just gets annoying sometimes when sending log details to others as it's a bit noisy for them to look at,

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

讽刺将军 2024-11-14 19:54:14

使用这一行过滤您的日志:

perl -pe 's/^(.*?: ){2}//'

Filter your logs with this one-liner:

perl -pe 's/^(.*?: ){2}//'
欲拥i 2024-11-14 19:54:14

编写一个5行程序,删除每行的前20个字符以删除时间戳,
或使用 line.split(" ") 删除前 3 部分。

或者使用带有块选择的文本编辑器,例如 TextPad

Write a 5 line program to remove the first 20 characters of each line to remove the timestamp,
or use line.split(" ") to remove the first 3 parts.

Or use a text editor with block selection such as TextPad

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