Sort the logging levels in ascending order from the least important to the most important one.
Logging in Android
Logging level priority
Report a typo
Put the items in the correct order
Log.i(String tag, String msg); // INFO
Log.d(String tag, String msg); // DEBUG
Log.w(String tag, String msg); // WARN
Log.v(String tag, String msg); // VERBOSE Logging
Log.e(String tag, String msg); // ERROR
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.