我添加了crashlytics日志记录。一名用户在尝试执行改造调用时收到onFailure(Call<T> call, Throwable t)
。在日志中,我看到了很短的消息:“床”(没有错,它的单词中有e
个字母)由t.toString()
返回。有人知道那是什么错误吗?
override fun onFailure(call: Call<T>?, t: Throwable?) {
Crashlytics.logException(java.lang.Exception("Non fatal error. Executor execute onFailure, ${t.toString()}"))
}