Forrest logo
back to context overview

adb-logcat

List of commands for adb-logcat:

  • adb-logcat:tldr:00e24 adb-logcat: Display logs for a tag in a specific mode ([V]erbose, [D]ebug, [I]nfo, [W]arning, [E]rror, [F]atal, [S]ilent), filtering other tags.
    $ adb logcat ${tag}:${mode} *:S
    try on your machine
    explain this command
  • adb-logcat:tldr:15c92 adb-logcat: Display logs for the process of a specific package.
    $ adb logcat --pid=$(adb shell pidof -s ${package})
    try on your machine
    explain this command
  • adb-logcat:tldr:1af2b adb-logcat: Display logs for React Native applications in [V]erbose mode [S]ilencing other tags.
    $ adb logcat ReactNative:V ReactNativeJS:V *:S
    try on your machine
    explain this command
  • adb-logcat:tldr:468f7 adb-logcat: Display logs for all tags with priority level [W]arning and higher.
    $ adb logcat *:W
    try on your machine
    explain this command
  • adb-logcat:tldr:4d82f adb-logcat: Display logs for a specific PID.
    $ adb logcat --pid=${pid}
    try on your machine
    explain this command
  • adb-logcat:tldr:59af5 adb-logcat: Color the log (usually use with filters).
    $ adb logcat -v color
    try on your machine
    explain this command
  • adb-logcat:tldr:a367e adb-logcat: Display lines that match a regular expression.
    $ adb logcat -e ${regular_expression}
    try on your machine
    explain this command
  • adb-logcat:tldr:bbfad adb-logcat: Display system logs.
    $ adb logcat
    try on your machine
    explain this command
back to context overview