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

时间:2016-02-27 04:06:29

标签: android logcat acra acralyzer

我正在使用以下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文本输出的电子邮件,但如何包含Logcat中显示的时间字段?

我试过添加"时间"到logcatArguments但是什么也没做。

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

1 个答案:

答案 0 :(得分:0)

我明白了。我需要" -v"同样。这有效:

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