Android studio
removes some of my log messages while the app is running.
How do I prevent that from happening?
Asked
Active
Viewed 42 times
0

Lena Bru
- 13,521
- 11
- 61
- 126
-
_"Android studio removes some of my log messages"_. It does not. What makes you think so? – Onik Dec 25 '19 at 12:30
-
Because i know for sure long messages are printed, but when i search for them in the log, they are not there – Lena Bru Dec 25 '19 at 12:51
-
Android logcat is a ring buffer. The long message might be gone from the buffer. Try increasing its size with `adb logcat -r
` or `adb logcat -G – Onik Dec 25 '19 at 13:03`