Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Step Filter in Eclipse

Greetings everyone!

In Step Filter, you can define the packages you wish to skip in Debug mode. One could notice, that it's a pain work to select all the packages you wish to skip if there is a small number of packages you really want to debug. My question is: is there any way to select packages you want to debug and that Eclipse simply steps over/ignores other packages?

Many thanks.

like image 635
Mario Avatar asked Mar 09 '11 11:03

Mario


2 Answers

i would suggest using breakpoints!

another great feature is "Run to Line" in the Editor or "Drop to Frame" in the Debug View. It doesn't make sense to debug a huge application from start to end.

like image 194
Alex_M Avatar answered Sep 28 '22 11:09

Alex_M


Window > Preferences > Java > Debug > Step Filtering

You can choose step filter packages.

like image 23
bukalemun Avatar answered Sep 28 '22 13:09

bukalemun