Android:通过ACRA在logcat中包含时间戳



当我的应用程序崩溃时,我使用以下ACRA配置向我发送电子邮件:

@ReportsCrashes(formKey = "", // will not be used
mailTo = "myaddress@gmail.com", // my email here
customReportContent = {ReportField.APP_VERSION_CODE, ReportField.APP_VERSION_NAME, ReportField.ANDROID_VERSION, ReportField.PHONE_MODEL, ReportField.STACK_TRACE, ReportField.LOGCAT },
mode = ReportingInteractionMode.TOAST,
resToastText = R.string.crash_toast_text,
logcatArguments = { "-t", "1000", "myapp*:V"  }
)

这将向我发送一封包含所有日志猫文本输出的电子邮件,但我如何包含 Logcat 中显示的时间字段?

我尝试将"时间"添加到logcatArguments中,但这根本没有作用。

我可以修改输出文本的内容以包含时间,但这对我可能感兴趣的其他系统事件没有帮助。

我想通了。我也需要"-v"。这有效:

logcatArguments = { "-v", "time", "-t", "1000", "myapp*:V" }

相关内容

  • 没有找到相关文章

最新更新