日食 + ddms - 不要从 ddms 日志复制时间戳等?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用这一行过滤您的日志:
Filter your logs with this one-liner:
编写一个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