Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Filter messages in Android Studio debug console

I use breakpoints, which generate messages in debug console (not logcat!). Unfortunately debug console also contains a lot of other messages, for example, tons of

D/Surface: Surface::setBuffersDimensions(this=0xb45d4700,w=720,h=1280)

How can I leave only messages from breakpoints?

Below is the console I talk about. Again - it's not logcat. enter image description here

like image 924
Alexey Avatar asked Jan 18 '17 00:01

Alexey


1 Answers

Right click on the line you want to hide, on the popup menu click "Fold lines like this". You'll be prompted a window where you can edit the folded lines content.

Ps. Folded lines content work the way contains string method does.

like image 128
I.G. Pascual Avatar answered Oct 10 '22 11:10

I.G. Pascual