microsoft / vscode-java-debug

Java Debugger for Visual Studio Code.
Other
530 stars 339 forks source link

stepFilters skipClasses setting not honored #1182

Open dssjon opened 2 years ago

dssjon commented 2 years ago

I'm having an issue configuring vscode to prevent stepping into .class files while debugging. Am I on the right path by updating launch.json configuration with the example below? Is there another setting that would override the debugger? I'm still seeing vscode step into springframework .class files given the setting here: "configurations": [ .... { "stepFilters": { "skipClasses": [ "org.springframework.*" ] } }

Environment
Steps To Reproduce
  1. Configure launch.json with "stepFilters": { "skipClasses": [ "org.springframework.*" ] }
  2. Run springframework app in debug and observe class files are stepped into.
cs-niraj-nandane commented 2 years ago

+1