android - Log.wtf()跟Log.e() 这两个函数有什么区别
PHP中文网
PHP中文网 2017-04-17 17:16:08
0
4
674

试了一下好像打印的东西都是一样的

PHP中文网
PHP中文网

认证0级讲师

reply all(4)
Ty80

Yeah. . wtf means what a terrible failure
terrible failure: reporting a situation that can never happen.

Then this is the official original text:

What a Terrible Failure: Report a condition that should never happen. The error will always be logged at level ASSERT with the call stack. Depending on system configuration, a report may be added to the DropBoxManager and/or the process may be terminated immediately with an error dialog.

Probably used to print bugs that will never occur under normal circumstances?

ps: not what the fuck_(:з ∠)_

巴扎黑

The error levels are different, Log.e代表错误级别的日志,Log.wtf是中断(ASSERT)级别的错误,毕竟是What The Fuck. It was a serious bug at first glance, so I cursed it.

小葫芦

Log.e就是单纯的错误。
Log.wtf会优先断言(ASSERT), and if you configure it, an error report will be generated, and then the program will end.

伊谢尔伦

官方文档:
wtf:
What a Terrible Failure: Report a condition that should never happen. The error will always be logged at level ASSERT with the call stack. Depending on system configuration, a report may be added to the DropBoxManager and/or the process may be terminated immediately with an error dialog.


e:
Send an ERROR log message.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template