Skip to content

Commit

Permalink
Add support for log points
Browse files Browse the repository at this point in the history
Fixes #1306
  • Loading branch information
DonJayamanne committed Apr 17, 2018
1 parent bd36aeb commit 41ec24a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions news/1 Enhancements/1306.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add support for [logpoints](https://code.visualstudio.com/docs/editor/debugging#_logpoints) in the experimental debugger.
1 change: 1 addition & 0 deletions src/client/debugger/mainV2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ export class PythonDebugger extends DebugSession {
body.supportsValueFormattingOptions = true;
body.supportsHitConditionalBreakpoints = true;
body.supportsSetExpression = true;
body.supportsLogPoints = true;
body.exceptionBreakpointFilters = [
{
filter: 'raised',
Expand Down

0 comments on commit 41ec24a

Please sign in to comment.