Warm tip: This article is reproduced from serverfault.com, please click

Flutter: Debug Console: What is the meaning of the letters: I, W?

发布于 2020-11-30 10:36:27

On the debug console sometimes messages appear like W/IInputConnectionWrapper ..., I/zygote .... or I/choreographer ..... What is the meaning of the letters "W" und "I"?

Questioner
Norman
Viewed
0
Maurits van Beusekom 2020-11-30 18:54:38

As mentioned by @pskink the I stands for Info and the W stands for Warning.

You can encounter the following values:

V: Verbose (lowest priority)
D: Debug
I: Info
W: Warning
E: Error
A: Assert

More information can be found here: https://developer.android.com/studio/debug/am-logcat