How does Log.wtf() differ from Log.e()?

前端 未结 7 604
臣服心动
臣服心动 2020-12-13 12:18

I have looked at the documentation for android.util.Log and I\'m not sure exactly what the difference between Log.e() and Log.wtf() is. Is one pref

7条回答
  •  不思量自难忘°
    2020-12-13 12:24

    I think that wtf (what a terrible failure) is used to report serious exceptions/problems of your applications (e.g. report them in your debug console).

    log.e is used to report errors, but no so serious.

提交回复
热议问题