-
Notifications
You must be signed in to change notification settings - Fork 30.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
break point not working #132119
Comments
/jsDebugLogs |
Thanks, I've sent the full log to that email, and I think the useful information I found is on this picture, but I don't know how to solve the problem. I have also tried this:
and uninstall vscode application. After a restarting of my computer, I reinstalled from brew. I also tried another Python project, same error, breakpoint added successfully and its color is red, but it never stop at these points. |
It looks like you're starting your program with "Run Without Debugging" (i.e. not in debug mode). This prevents breakpoints from being bound -- in any runtime. You can use F5 or the green arrow in the Debug view to start your program in debug mode. |
How to "Run Withou Debugging" ? There're three ways here in my computer:
I think none of the three works as-designed |
If it's grey that means you are debugging but the breakpoint didn't bind. If you get a trace log in that state, I can take a look at it. |
Hello bro, the trace log(-4c9dacf8) was created by pressing the green
button in debug view. => break point is grey and said unbound
[image: Captura de pantalla 2021-09-03 a las 19.41.26.png]
…On Fri, Sep 3, 2021 at 7:34 PM Connor Peet ***@***.***> wrote:
If it's grey that means you are debugging but the breakpoint didn't bind.
If you get a trace log in that state, I can take a look at it.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#132119 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABSS6AFH4BX7YNND74QBBVDUAEBJ7ANCNFSM5DI5U72A>
.
|
sorry I just found I didn't put the log here, now I did: |
We are experiencing a similar issues. We're running Mocha tests in Node with TypeScript. Breakpoints worked fine in 1.59, but once we upgraded to 1.60, the debugger does not stop at breakpoints. If we set a breakpoint using the JS keyword |
@jakawell there's a good chance this will fix it for you: microsoft/vscode-js-debug#1100 (comment) |
@connor4312 Aha, perfect. That solved our issue. Thanks! |
Does this issue occur when all extensions are disabled?: Yes/No
Steps to Reproduce:
1.upgrade to latest vscode => 1.59.1
2.start an expressjs + typescript project
3.create a launch.json file:
the debugger started in a second, even it's still building the project, and after a while the debug console panel doesn't have any logs. I tested the project with curl or chrome, the project is running, cuz I got the expected results. I created a break point , but it didn't stop there.
When I stop the debugger, the debug console panel start to show all the logs: request log, debug log and so on...
The text was updated successfully, but these errors were encountered: