
logcat
List of commands for logcat:
-
logcat:tldr:00da3 logcat: Write system logs to a file.$ logcat -f ${filename}try on your machineexplain this command
-
logcat:tldr:051b7 logcat: Display logs for a specific PID.$ logcat --pid=${pid}try on your machineexplain this command
-
logcat:tldr:2759d logcat: Display lines that match a regular expression.$ logcat --regex ${regular_expression}try on your machineexplain this command
-
logcat:tldr:a897e logcat: Display logs for the process of a specific package.$ logcat --pid=$(pidof -s ${package})try on your machineexplain this command