We use debug statements in Salesforce apex to debug code which can impact application performance. This post will help in understanding how to optimize code by disabling debug mode in production.
Tag:
Apex logging
- ApexArchitectureIntegrationSalesforce
Avoid Batch Apex and Use Queueable Class
by Dhanik Lal Sahni November 5, 2021Salesforce has four asynchronous apex which can handle long running job. This post will explain where to avoid batch apex and use Queueable Class instead.
- Salesforce
Exception Logging in Custom Object : Salesforce Apex
by Dhanik Lal Sahni September 8, 2018While working on salesforce implementation, we should log exception somewhere in our system. This will help in identifying issue as well as we required it for enhancing our current system.…