For the More Curious: Log Levels
When you use the android.util.Log class to send log messages, you control not only the content of the message but also a level that specifies how important the message is. Android supports five log levels, shown in Table 3.2. Each level has a corresponding function in the Log class. Sending output to the log is as simple as calling the corresponding Log function.
Table 3.2 Log levels and functions
Log level | Function | Used for |
---|---|---|
ERROR |
Log.e(…) |
errors |
WARNING |
Log.w(…) |
warnings |
INFO |
Log.i(…) |
informational messages |
DEBUG |
Log.d(…) |
debug output (may be filtered out) |
VERBOSE |
Log.v(…) |
development only |
In addition, each of the logging ...
Get Android Programming: The Big Nerd Ranch Guide, 5th Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.