
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} *:Stry on your machineexplain 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 machineexplain 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 *:Stry on your machineexplain this command
-
adb-logcat:tldr:468f7 adb-logcat: Display logs for all tags with priority level [W]arning and higher.$ adb logcat *:Wtry on your machineexplain this command
-
adb-logcat:tldr:4d82f adb-logcat: Display logs for a specific PID.$ adb logcat --pid=${pid}try on your machineexplain this command
-
adb-logcat:tldr:59af5 adb-logcat: Color the log (usually use with filters).$ adb logcat -v colortry on your machineexplain this command
-
adb-logcat:tldr:a367e adb-logcat: Display lines that match a regular expression.$ adb logcat -e ${regular_expression}try on your machineexplain this command
-
adb-logcat:tldr:bbfad adb-logcat: Display system logs.$ adb logcattry on your machineexplain this command