Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I hide this message in the Flutter console - ViewPostIme pointer 0

Everytime I tap the screen of my device, I see this message in the Flutter console

D/ViewRootImpl@38eee14[MainActivity]( 7994): ViewPostIme pointer 0

followed by

D/ViewRootImpl@38eee14[MainActivity]( 7994): ViewPostIme pointer 1

These messages crowd the console and get in the way of reading actual important logs, so is there a way to get rid of them?

like image 933
Conner Avatar asked Jun 20 '19 00:06

Conner


1 Answers

I did it with

flutter run | grep -v "D/ViewRootImpl"
like image 131
mancvso Avatar answered Sep 18 '22 07:09

mancvso