function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Sai MudivartySai Mudivarty 

Apex Debugger in VSCode: Unverified Breakpoint


Hi Everyone,
I am experiencing an issue with the Apex Replay Debugger on my Mac. When I am trying to replay a log file in Apex Replay Debugger in VSCode, the debugger never stops at the specified break point.
When I hover over the breakpoint when the log file execution starts, it shows the breakpoint as an ‘unverified breakpoint’.
I have verified the logs and it didn't skip any bytes during the execution which could potentially prevent the debugger from stopping at the break point.
I have specified the Salesforcedx-vscode-apex › Java: Home in the settings as well.
Is there something that I am missing ?
Here is the configuration for the Apex Replay Debugger
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Apex Replay Debugger",
"type": "apex-replay",
"request": "launch",
"logFile": "${command:AskForLogFileName}",
"stopOnEntry": true,
"trace": true
},
{
"name": "Launch Apex Debugger",
"type": "apex",
"request": "launch",
"sfdxProject": "${workspaceRoot}"
}
]
}
Any help is greatly appreciated.
Thanks,
Uday