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

来源:互联网 发布:mac finder要密码 编辑:程序博客网 时间:2024/06/03 07:23

Log.e()对应ERROR级别

Log.wtf() 对应ASSERT级别

There is a difference in severity;

Log.e() will simply log an error to the log with priority ERROR.

Log.wtf() will log an error with priority level ASSERT, and may (depending on the system configuration) send an error report and terminate the program immediately.



0 0