Kyaw Tun
Kyaw Tun

Reputation: 13131

How to disable Android emulator console log debug message in Flutter?

When using Android ARM emulator in Flutter, a lot of no useful debug message are spewing out. (See screenshot below)

How to disable Android emulator console log debug message in Flutter?

enter image description here

Upvotes: 2

Views: 2166

Answers (2)

Alexander Barker
Alexander Barker

Reputation: 321

You can turn off outputs like this: enter image description here

Upvotes: 2

Diwyansh
Diwyansh

Reputation: 3514

I think your solution could be folding up lines with same substring you may go through below process. It may help you In Android Studio

  1. Go to Settings
  2. Click Editor
  3. Select Console

here you will find line saying

fold console line that contains :

Just add the line to this list and check whether it helped you or not.

Ref. Image

enter image description here

Upvotes: 4

Related Questions