- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2023 06:07 PM
Hi All, I'm trying to debug asynchronous processing. I wanna know best way how to debug asynchronous processing.
usually I check a log if I want to know variable(Object) value. cuz Script Debugger doesnt work in asynchronous processing.
Thats worst way in my life.
If you know other way, Please teach me.
Thank you for reading.
#Debug #Asyncronous processing
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2023 08:41 PM
@Takumi, Unfortunately, the options for asynchronous debugging are still pretty limited in ServiceNow. They did come up with script tracer https://docs.servicenow.com/bundle/vancouver-application-development/page/script/debugging/concept/s...
However, it also offers limited to showing which lines on Service side across business rules and script includes have executed and if they contain any errors. For accessing the run time values of the variables you would still have to rely on the gs.info statements in the code.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-19-2023 08:41 PM
@Takumi, Unfortunately, the options for asynchronous debugging are still pretty limited in ServiceNow. They did come up with script tracer https://docs.servicenow.com/bundle/vancouver-application-development/page/script/debugging/concept/s...
However, it also offers limited to showing which lines on Service side across business rules and script includes have executed and if they contain any errors. For accessing the run time values of the variables you would still have to rely on the gs.info statements in the code.