Documentation
    Preparing search index...
    providerBoot: TracingChannel<
        "adonisjs.provider.boot",
        { provider: ContainerProviderContract },
    > = ...

    Tracing channel for service provider boot lifecycle hook. This channel traces when a provider's boot() method is called during the application boot phase, after all providers have been registered.

    // Monitor boot performance
    providerBoot.subscribe({
    asyncStart(provider) {
    console.time(`boot-${provider.constructor.name}`)
    },
    asyncEnd(provider) {
    console.timeEnd(`boot-${provider.constructor.name}`)
    }
    })