Logging using Crashlytics

前端 未结 5 2116

I am using multiple Crashlytics.log() commands, for example:

Crashlytics.log(\"This is message 1\");
Crashlytics.log(\"This is message 2\"); 
         


        
5条回答
  •  栀梦
    栀梦 (楼主)
    2021-02-19 00:48

    According to the Crashlytics docs:

    To make sure that sending crash reports has the smallest impact on your user’s devices, Crashlytics logs have a maximum size of 64 KB. When a log exceeds 64 KB, the earliest logged values will be dropped in order to maintain this threshold.

    Your first message will be dropped if the second message plus the first message exceed 64KB.

提交回复
热议问题