Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to stop logcat from scrolling in Android Studio

I used Eclipse before and I could easily stop logcat from scrolling, but I can't find same funcionality in Android studio. Anyone knows how to do it?

like image 769
Drag0 Avatar asked Oct 18 '13 20:10

Drag0


People also ask

How do I stop Logcat from clearing?

Prevent clearing the log when the app crashes By default when the app got crashed the logcat clear's in the android studio. To prevent this, click the right end chooser(Filter Configuration chooser) in the logcat tab then select Edit Filter Configuration option and enter current app name and package name.

How do I stop adb logs?

-c Clears (flushes) the entire log and exits. Thank you, it's really helped me.

What is Logcat buffer?

Logcat is a command-line tool that dumps a log of system messages, including stack traces when the device throws an error and messages that you have written from your app with the Log class. This page is about the command-line logcat tool, but you can also view log messages from the Logcat window in Android Studio.

What is regex in Android Studio Logcat?

Logcat provides several default filter options (Verbose, Info, Debug etc) and a simple pattern match filter, but the regex filter is the most powerful option for customizing logcat output.


2 Answers

There's no dedicated button for this, but you can just click on / highlight some text around where you want to stop scrolling.

like image 180
cnnr Avatar answered Sep 29 '22 18:09

cnnr


android studio have this feature enter image description here

you just click on the line three times and you can selectd the line , it will stops scrolling.

like image 41
taotao Avatar answered Sep 29 '22 19:09

taotao