Online Course Support

The Log class allows you to print debug messages to a dedicated view of Android Studio. This class offers the following methods:

Question 4
The Log class allows you to print debug messages to a dedicated view of Android Studio. This class offers the following methods:

1 point

d(…), e(…), i(…) depending whether you want to display a message (‘d’), to raise an exception (‘e’) or to insert a message into the log (‘i’)

print(…) and add(…)

d(…), e(…), i(…) depending on the “status” of the message: debug, error, information.

Similar Posts