Const
import diagnostics_channel from ‘node:diagnostics_channel’
diagnostics_channel.subscribe(‘handling-web-server:error’, (message, name) => {
console.log(message, name)
})
import diagnostics_channel from ‘node:diagnostics_channel’
diagnostics_channel.subscribe(‘handling-web-server:info, (message, name) => {
console.log(message, name)
})
An object containing pre-defined diagnostics channels for the web server.