Ashwaq
Ashwaq

Reputation: 89

How can I debug apex class in force.com eclipse ide?

How can I debug apex class in force.com eclipse IDE?

Upvotes: 8

Views: 7459

Answers (2)

Ryan Guest
Ryan Guest

Reputation: 6470

Since this post, the interactive Apex Debugger is now available (as an add-on).

You can learn more about it at the Dreamforce '15 Session: The Apex Interactive Debugger.

Upvotes: 0

metadaddy
metadaddy

Reputation: 4419

There is currently no facility for debugging Apex from the Force.com (Eclipse) IDE, but there is the System Log Console for post-mortem debugging of Apex code - see http://developer.force.com/releases/release/Winter11/System+Log+Console and http://blog.sforce.com/sforce/2010/05/sneak-peak-the-new-system-log-console.html - this gives you an 'after the fact' view, rather than the ability to set breakpoints and step through code, but it is very detailed, down to execution of individual lines of code, and variable values.

Upvotes: 9

Related Questions