Opp Class Debugging Process

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

public static void updateDesc(List<Opportunity> oppList) {

System.debug('Entering updateDesc method');


for (Opportunity opp : oppList) {
if (opp.Amount != null && opp.Amount > 100000) {
opp.Description = 'Hot Opportunity';
System.debug('oppp >>>>>' + opp.Description);
}
}
System.debug('Exiting updateDesc method');
}

// after/before insert a record logs can check in developer console

You might also like