function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
JBabuJBabu 

In eclipse, where can I see "System.debug" statement output?

Hi,

 
I have some "System.debug" statement in my apex test class.. Where can I see the output of these statements in eclipse after executing the test class? I am aware of checkin in salesforce org thru debug logs. But I am not sure how to check in eclipse. Please help me on this.
 

Thanks,
Jbabu.

Best Answer chosen by Admin (Salesforce Developers) 
SidzSidz

Hi ,

 

If you are using eclipse 3.6(helios)

Go to window->view->other

expand force.com and select "Apex Test Runner"

 

You should be able to see the debug logs in the right panel of "Apex Test Runner" after you run the test.

 

Hope this helps,

Sidz

(please mark this as the solution if it works for you )

All Answers

SidzSidz

Hi ,

 

If you are using eclipse 3.6(helios)

Go to window->view->other

expand force.com and select "Apex Test Runner"

 

You should be able to see the debug logs in the right panel of "Apex Test Runner" after you run the test.

 

Hope this helps,

Sidz

(please mark this as the solution if it works for you )

This was selected as the best answer
JBabuJBabu

Thank you Sid..