1

I am studying the code who has written by other programmer. there are bunch of classes and triggers. i want to check the flow of the trigger. How to see hirarchy and how to set breakpoints to trigger?

1 Answers1

0

Reference Link:

The Apex Interactive Debugger

Getting Started with the Apex Debugger

  • The Apex Debugger extends the Force.com IDE plug-in for Eclipse and does most of the things you expect a debugger to do. Use it to: Set breakpoints in Apex classes and triggers.
  • View variables, including sObject types, collections, and Apex System types. View the call stack, including triggers activated by Apex Data Manipulation Language (DML), method-to-method calls, and variables.
  • Interact with global classes, exceptions, and triggers from your installed managed packages. (When you inspect objects that have managed types that aren’t visible to you, only global variables are displayed in the variable inspection pane.)
  • Complete standard debugging actions, including step into, over, and out, and run to breakpoint.
  • Output your results to the Console window.

This post from @sfdcfox would be really helpful regarding debugging with Eclipse tool.

Devendra
  • 5,075
  • 1
  • 24
  • 28