Debugging Tools: Logging with Android's LogCat

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/10

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards related to the concepts of logging and LogCat in Android.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

11 Terms

1
New cards

Logging

The process by which you create a log file, which is a record of events that happen on a system.

2
New cards

Log File

In Android, a record of system messages that both the Android platform and the apps create while they are running, including error messages, notifications, and custom messages.

3
New cards

Log Tag

A local variable that identifies the class file from which the log statements originate, aiding in debugging larger projects with multiple class files.

4
New cards

Log Levels

Categories that indicate the severity of a log statement in Android, including Assert, Error, Warn, Info, Debug, and Verbose, used for filtering log messages.

5
New cards

Assert (Log Level)

The highest severity log level. When filtered, only Assert level logs are displayed.

6
New cards

Error (Log Level)

The second highest severity log level. When filtered, Error and Assert level logs are displayed.

7
New cards

Warn (Log Level)

A log level. When filtered, Warn, Error, and Assert level logs are displayed.

8
New cards

Info (Log Level)

A log level. When filtered, Info, Warn, Error, and Assert level logs are displayed.

9
New cards

Debug (Log Level)

A log level. When filtered, Debug, Info, Warn, Error, and Assert level logs are displayed.

10
New cards

Verbose (Log Level)

The lowest severity log level. When filtered, all log statements are displayed.

11
New cards

LogCat

Android Studio tool used to read and filter log messages from Android devices or emulators, aiding in debugging.