Reputation: 3301
I/flutter ( 6499): fliter clicked
I/ViewRootImpl@c5d3a59[MainActivity]( 6499): ViewPostIme pointer 0
I/ViewRootImpl@c5d3a59[MainActivity]( 6499): ViewPostIme pointer 1
I/ViewRootImpl@c5d3a59[MainActivity]( 6499): ViewPostIme pointer 0
I/ViewRootImpl@c5d3a59[MainActivity]( 6499): ViewPostIme pointer 1
I/flutter ( 6499): Converting object to an encodable object failed: Instance of 'RxInt'
I am trying to find which .dart and command line is is printing on this (6499) case. I'm using the VScode and is there any way that I can trace this down?
Upvotes: 1
Views: 576
Reputation: 1697
Simple do CTRL+SHIFT+F
and search for print
or debugPrint()
whichever you used
Upvotes: 1