Firebase Crashlytics custom log does not appear in the console

前端 未结 5 948
眼角桃花
眼角桃花 2021-02-05 03:56

I\'ve been testing Firebase Crashlytics and even though the normal crash report works right I can\'t success trying to generate a custom as it says the documentatio

5条回答
  •  灰色年华
    2021-02-05 04:23

    For a better understanding, when you collect data with

    FirebaseCrashlytics.getInstance().log("Test w(text)")
    FirebaseCrashlytics.getInstance().log("Test e(text)")
    

    you will get NO new non-fatal crash report in Firebase crashlytics. But follow up by a

    FirebaseCrashlytics.getInstance().recordException(RunTimeException("Test e(throwable)"))
    

    it will send this error

    with this additional log entries within this error

提交回复
热议问题