![]() | Apex BOOST Library |
Description | This class contains diagnostic methods with several advantages over their System counterparts:
In order for the debug/warning/info methods to work, you'll need to create a global class extending Util. Specify this class in the Apex BOOST custom settings, then override the global with sharing class ABoostDebug extends aBoost.Util { global override void onDebug(LoggingLevel level, String details) { System.debug(level, details); } } |
---|