Top "Logcat" questions

Logcat is the command to view and filter information from the Android logging system, but more often the name is used as a synonym for the Android logging system itself.

android logcat logs chatty module line expire message

I am getting lots of this kind of logcat messages related to my application. 11-19 19:04:23.872 3327 3440 I chatty : uid=10085 com.xxxx.…

android logcat android-logcat
Android App crashes without any logcat or any exception

Good day.I have very weird situation.The app crashes on some point but not as it usually will crash.…

android crash logcat
How to exclude certain messages by TAG name using Android adb logcat?

Logcat allows filtering logs but it works like that: You define filters and logcat only displays messages which matches filters. …

android filter adb logcat
V/FA: Inactivity, disconnecting from the service

I face this problem in two android projects . In one i was trying to retrieve data from Firebase into Recyclerview …

android firebase firebase-authentication logcat
Where are Android logcat files stored?

I'm looking for the log file(s) that are made by logcat. Where are they typically stored?

android logcat
Why are Log.d() and Log.v() not printing

I have the following test code in my Activity: @Override public void onStart() { super.onStart(); Log.e(CLASS_NAME, "ERROR …

android-studio logcat
Filtering Logcat Logs on commandline

public static final TAG = "Legendry Eagle"; Issue: I want to see logs of "Legendry Eagle" from the commandline. I tried: …

android logcat
grep the adb logcat & write the output to a text file

I want to grep the adb logcat & write the output to a text file. If I just do ./adb …

android file text grep logcat
Enable LogCat on Release Build in Android Studio

By default, when I change Build Variants to release I don't get any Logs on the logcat, but I do …

android logcat
Disable LogCat Output COMPLETELY in release Android app?

Shutting off my own app's LogCat output before releasing an app to the market is straightforward. I also know how …

android release google-play logcat android-logcat