Logging level priority

Report a typo

Sort the logging levels in ascending order from the least important to the most important one.

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
___

Create a free account to access the full topic