Johann
Johann

Reputation: 29867

View variable values without any breakpoints in Eclipse

In Eclipse with Android, is it possible to run an app in debug mode but not have any breakpoints but still view the value of variables as they get updated?

Upvotes: 1

Views: 171

Answers (1)

Blackbelt
Blackbelt

Reputation: 157437

you have to add a watchpoint instead of a breakpoint. But still the debugger will stop on the watch point every time the variable you are watching is read or modified

Upvotes: 1

Related Questions