A Guide on How to Take Logs! .

A Guide on How to Take Logs! .

kubersharma



What is a 'LOGCAT'? 

A "LogCat" is for debugging applications / Android system. When Applications / Android crash's they output the "explanation" for the crash. This log can be saved and help developers to fix the crash.

What is 'LOGCAT' to do?

It will help us solve your problems.

How can I take a 'LOGCAT'?

There are several methods to take a logcat


Through ADB:

adb devices

adb logcat > name of problem.txt


UPDATE : Same method will work in POWERSHELL IN WINDOWS


Through TERMINAL:

Linux, in Android etc


logcat > /sdcard/logcat.txt


Through Android APP:


Download Matlog app from Google Play Store


Futhermore you can read here : https://developer.android.com/studio/command-line/logcat.html

Report Page