Questions tagged [debug-logs]
The debug-logs tag has no summary.
143 questions
1 vote
0 answers
52 views
Apex logs for incoming rest api call are no longer shown in Developer Console
Why apex logs are no longer shown for the incoming REST API requests? Back in 2021 Apex Logs used to be created if you perform REST API call under your user. https://salesforce.stackexchange.com/a/...
0 votes
1 answer
37 views
Creating a Record Trigger Flow that stops users from buying an item
I am trying to figure out how to create a flow that stops underage buyers from ordering certain products, for example, weapons. Every time I try to debug, the get record elements for both contacts and ...
0 votes
1 answer
103 views
Platform Event is not listening in Salesforce for Standard Composite API Request
I am validating the external inbound API call using Postman. The external application is publishing the Salesforce standard Composite API, which has only one task to fire the platform event. I am able ...
0 votes
1 answer
47 views
Logs ignoring Log Level specified
if i run this code in the annonimous console: System.debug('testing logs FLAGS (sem flag explicita)'); System.debug(LoggingLevel.NONE, 'testing logs FLAG'); System.debug(LoggingLevel.ERROR, 'testing ...
4 votes
1 answer
798 views
Debug Log shows Flows executing in a different order to Flow Trigger Explorer
Just wondering if someone can help me to understand what I'm seeing in our org. I'm trying to document the order in which our automation runs when a Lead is created. My problem is that I'm seeing ...
0 votes
0 answers
64 views
Unexpected behaviour when firing a apex method
I have this piece of code: public static void initTraitementBillingApi() { String methodName = 'traitementDPF'; ObjectUtil.debugLogBegin(CLASSNAME, methodName, ''); //String periode = ...
2 votes
1 answer
1k views
Error when trying to debug log file: Unable to retrieve breakpoint info from language server, language server is not ready
I receive the following error when trying to debug a log file: Unable to retrieve breakpoint info from language server, language server is not ready. I already reloaded my VS Code window, what ...
0 votes
1 answer
240 views
Debug log do not trigger for Mobile actions
I have a custom detail page vf button on Opportunity, once the user clicks it, it runs few validations and redirects to another vf page. It works in Lightning experience in PROD and Sandbox in browser ...