Logcat 多次重定向到文件
当我的应用程序启动时,我已将 logcat 重定向到我的代码中的文件。 但是当我的应用程序重新启动时,重定向代码再次运行,结果是日志中的每一行都被写入两次。
如何执行命令并确保子进程在父进程终止时也终止?
String.format("logcat -f %s -r %d", filename.getAbsolutePath(), LOG_FILE_SIZE_KB);
Runtime.getRuntime().exec(cmd);
如何确保我的应用程序的 logcat 仅重定向一次? (如果其他应用程序调用 logcat 并将其重定向到它自己的文件,会发生什么情况,那么检查仍然有效吗?)
谢谢!
I've redirected the logcat to file in my code when my app starts.
But when my application is restarted, the redirecting code runs again and the result is that each line in the log is written twice.
How can I execute the command and make sure the child process dies when the parent dies?
String.format("logcat -f %s -r %d", filename.getAbsolutePath(), LOG_FILE_SIZE_KB);
Runtime.getRuntime().exec(cmd);
How can i make sure that my app's logcat is redirected only once?
(Whats happends if other app calls the logcat and redirects it to it's own file, will the check still work then?)
thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您仅将 LogCat 用于调试目的,则可能需要阅读此内容。
激活 LogCat 后,您可以在 Eclipse 中打开 LogCat-View,它将显示所有 LogCat-Output,因此您不需要首先将其写入文件。
If you only use LogCat for debugging purposes, you might want to read this.
After you Activated LogCat, you can open the LogCat-View in Eclipse which will then show you all the LogCat-Output, so you don't need to write it to a file in the first place.
两种选择:
a) 创建一个静态全局变量,其中包含 Logcat 是否已重定向的信息。
b) 在 sdcard 或应用程序目录(xml 或属性文件)中创建一个文件,其中包含天气 LogCat 已重定向的信息。
Two options:
a) Make a static global variable that will contain information weather Logcat was already redirected or not.
b) Make a file on the sdcard or in the app directory (xml or properties file) containing info weather LogCat was already redirected.