Skip to content

Commit 41ec24a

Browse files
authored
Add support for log points
Fixes #1306
1 parent bd36aeb commit 41ec24a

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

news/1 Enhancements/1306.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add support for [logpoints](https://code.visualstudio.com/docs/editor/debugging#_logpoints) in the experimental debugger.

src/client/debugger/mainV2.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ export class PythonDebugger extends DebugSession {
6969
body.supportsValueFormattingOptions = true;
7070
body.supportsHitConditionalBreakpoints = true;
7171
body.supportsSetExpression = true;
72+
body.supportsLogPoints = true;
7273
body.exceptionBreakpointFilters = [
7374
{
7475
filter: 'raised',

0 commit comments

Comments
 (0)