The logging message not showing up

Report a typo

Rachel is trying to log an error message in her Android app but it is not showing up in the error logging level in her Logcat! Select all the possible reasons that may be causing the problem.

try {
     ...
    // This may throw an exception
     ...
} catch (e: ArithmeticException) {
    Log.w("MyApp", "exception", e) // Logging the exception
}
Select one or more options from the list
___

Create a free account to access the full topic