fferpcore.MessagingSettingsServiceglobal with sharing class MessagingSettingsService A messaging settings service structure. Properties
MethodsgetLoggingLevelglobal static String getLoggingLevel() This method returns the current logging level of the Foundations messaging engine. The current logging level determines what kind of messages are stored. Return ValueThis service returns a String object. Sample Code//Note: This sample code is for demonstration purposes only. It is not intended for //use in a production environment, is not guaranteed against defects or errors, and //is in no way optimized or streamlined. String result = fferpcore.MessagingSettingsService.getLoggingLevel(); setLoggingLevelglobal static void setLoggingLevel(String loggingLevel) This method sets the current logging level of the Foundations messaging engine. The current logging level determines what kind of messages are stored. Input Parameters
Sample Code//Note: This sample code is for demonstration purposes only. It is not intended for //use in a production environment, is not guaranteed against defects or errors, and //is in no way optimized or streamlined. fferpcore.MessagingSettingsService.setLoggingLevel(fferpcore.MessagingSettingsService.LOGGING_LEVEL_ALL); String result = fferpcore.MessagingSettingsService.getLoggingLevel(); |