chichi
chichi

Reputation: 3301

Flutter: how can I trace the 'print' line?

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

Answers (1)

Nikhil Badyal
Nikhil Badyal

Reputation: 1697

Simple do CTRL+SHIFT+F and search for print or debugPrint() whichever you used

Upvotes: 1

Related Questions