ServiceNow Certified Application Developer — Question 109
Which server-side API debug log method is available for scoped applications?
Answer options
- A. gs.log()
- B. gs.info()
- C. gs.debuglog()
- D. gs.print()
Correct answer: B
Explanation
The correct answer is B, gs.info(), which is specifically designed for logging informational messages in scoped applications. Options A (gs.log()) and D (gs.print()) do not serve the same purpose in the context of debugging, while C (gs.debuglog()) is not a valid method for logging in scoped applications.