在崩溃报告中指定logcatArguments时,Acra缺少LOGCAT

时间:2016-09-05 09:47:55

标签: android android-studio android-logcat acra

指定logcatArguments时,我没有收到LOGCAT。

我使用了以下代码

@ReportsCrashes(mailTo = Constants.MAIL_TO,

logcatArguments = { "-t", "500", "-v", "long", "ActivityManager:I", "*:D", "*:S" },
        customReportContent = {
                ReportField.BUILD, ReportField.USER_APP_START_DATE, ReportField.USER_CRASH_DATE,
                ReportField.USER_EMAIL, ReportField.APP_VERSION_NAME, ReportField.ANDROID_VERSION,
                ReportField.PHONE_MODEL, ReportField.CUSTOM_DATA, ReportField.STACK_TRACE,
                ReportField.LOGCAT,
        },
        mode = ReportingInteractionMode.DIALOG, resToastText = R.string.crash_toast_text,
        resDialogText = R.string.crash_dialog_text, resDialogIcon = android.R.drawable.ic_dialog_info,
        resDialogTitle = R.string.crash_dialog_title,
        resDialogCommentPrompt = R.string.crash_dialog_comment_prompt,
        resDialogOkToast = R.string.crash_dialog_ok_toast, logcatFilterByPid = true)

我试过了 logcatArguments = {“ - t”,“500”,“ - v”,“long”},LOGCAT仍为空。但是如果我没有指定logcatArguements,我会得到几行日志。我需要至少获得Logcat的最后500行而不进行任何过滤。有人可以帮助我如何进行配置。

2 个答案:

答案 0 :(得分:2)

"ActivityManager:I", "*:D", "*:S"是过滤器。只需删除它们。改为添加*:V

答案 1 :(得分:2)

我只是在应用程序文件中初始化 ACRA ,它会发出完整的logcat错误。当我发送邮件时。

@ReportsCrashes(formKey = "1sCVh3QRentB2aK-2lqbjtt92RwFBxEtM2MbOaB9ErRc", mailTo = "your mail", mode = ReportingInteractionMode.TOAST, resToastText = R.string.crash_toast_text)
public class MyApplication extends Application {

@Override
public void onCreate() {
    // The following line triggers the initialization of ACRA
    ACRA.init(this);
    super.onCreate();

}
}

谢谢希望这对你有所帮助。