Const
Tracing channel for service provider ready lifecycle hook. This channel traces when a provider's ready() method is called after the application is fully ready and serving requests.
// Log when providers are readyproviderReady.subscribe({ asyncStart(provider) { console.log('Provider ready:', provider.constructor.name) }, error(provider, error) { console.error('Provider ready failed:', provider.constructor.name, error) }}) Copy
// Log when providers are readyproviderReady.subscribe({ asyncStart(provider) { console.log('Provider ready:', provider.constructor.name) }, error(provider, error) { console.error('Provider ready failed:', provider.constructor.name, error) }})
Tracing channel for service provider ready lifecycle hook. This channel traces when a provider's ready() method is called after the application is fully ready and serving requests.