In a privately-scoped application, which methods are used for logging messages in server-side scripts? (Choose two.)
In a privately-scoped application, which methods are used for logging messages in server-side scripts? (Choose two.)
CDE all are correct answers. GlideSystem debugging methods: gs.info(), gs.error(), gs.warn(), gs.debug() and gs.log() Also the below sends debuding information to the top of the form 1. gs.addInfoMessage() 2. gs.addErrorMessage() FYI: gs.log() is only used in global scope and cannot be used for a privately scoped application.