-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
bugdebuggerfixedCheck the Milestone for the release in which the fix is or will be available.Check the Milestone for the release in which the fix is or will be available.regressionA bug that didn't exist in a previous releaseA bug that didn't exist in a previous release
Description
Bug type: Debugger
-
OS and Version: Windows 10 Home
-
VS Code Version: 1.59.1
-
C/C++ Extension Version: 1.6.0
-
I just installed version 1.6.0, and the LogPoint functionality stopped working as it should. Instead of printing to the debug console, the message now stops as if it were a common breakpoint.
To Reproduce
- Create a simple file of C++
#include <iostream>
#include<windows.h>
using namespace std;
int main()
{
while (1)
{
Sleep(1000);
cout << "Hello World" << endl;
}
}- Compile the program
- Add a Logpoint at
cout << "Hello World" << endl; - Run the debugger.
Context
I'm using the default config for lauch.json to test the error. Using 1.5.1 works fine.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugdebuggerfixedCheck the Milestone for the release in which the fix is or will be available.Check the Milestone for the release in which the fix is or will be available.regressionA bug that didn't exist in a previous releaseA bug that didn't exist in a previous release