Tag Archives: Debugger

How to debug in lightning using developer console API

A major part of any Salesforce developer’s job is debugging. Because Salesforce has a multitenant architecture, debugging on the platform is a bit different than it might be in other development environments. Commonly we use console.log() method to log on the console screen, but console provides wide range of methods which we helps to debugging… Read More »

Usage of Interactive Apex Debugger

Introduction: In Winter’16 release, Salesforce offered a new “Apex Interactive Debugger” that shall make developers of other platforms feel comfortable working with Salesforce. An interactive debugger allows you to set, remove and suspend breakpoints. It also allows you to step in, step out, step over and through your code, as well as view variables at… Read More »