- May 16, 2022
- admin
- 0
ADB Logcat command
This is one of the debugging commands. When you want to provide logs to your OEM or ROM developer, this command will help you. It will display current running status logs of your device which can be written into a file. Visit any development forums such as XDA and there’s a sure shot chance that you’ll find at least one developer asking users to provide logcat in case there is some problem
Syntax:
adb logcat > %PATH WHERE YOU WANT TO STORE THE LOG%
Example: The below command would create a file called Log.txt and add the status logs to it.
adb logcat > C:\Logs\Log.txt