

You can paste this information into the bug to help developers locate the problem more easily. The error type and error code line will be listed under FATAL. For example, if force close appears, we can search for the "Fatal" keyword. If you directly enter adb logcat, it will contain "-b events -b radio" by default.Īfter grabbing the log, you can search for keywords in the log to determine what the problem is. You can change the name freely, or enter the path before the name, such as saving to the desktop: adb logcat -b events -b radio -b main -b system -b crash -v time> C:\Users\alex\Desktop\log.txt (3) "log.txt" is the name of the log file to be printed. (2) "-v time" will print out the time of the log, if not added, the time will not be displayed

Crash is the log generated when the phone crashes. Events is to capture the operation events of the mobile phone and what operations are done radio is mainly related to modems, and radio is required for calls, text messages, and network bugs both main and system It is the Android system log. Adb logcat -b events -b radio -b main -b system -b crash -v threadtime > log.txt
