We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd36aeb commit 41ec24aCopy full SHA for 41ec24a
news/1 Enhancements/1306.md
@@ -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
@@ -69,6 +69,7 @@ export class PythonDebugger extends DebugSession {
69
body.supportsValueFormattingOptions = true;
70
body.supportsHitConditionalBreakpoints = true;
71
body.supportsSetExpression = true;
72
+ body.supportsLogPoints = true;
73
body.exceptionBreakpointFilters = [
74
{
75
filter: 'raised',
0 commit comments