Can we log to the console during the build process?

Debugging async prerendering:
module.exports = new Router()
.prerender(getPrerenderRequests)
.get(’/healthcheck’, ({ send }) => {
send(‘OK’);
})

within the getPrerenderRequests function we have some console.logs to validate things but are not seeing the output in the build. Will this output be sent anywhere in the console that we can view?

I was able to do some debugging by throwing an error within the function since console.log is not output in the result. See Are there means of debugging/logging the output of the static `prerender` function of the Router?

It would be helpful to have means of logging to the build output.

An internal ticket has been created to track the effort on this. Updates will be posted as soon as possible
Ticket #: XDN-7900