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

    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 ready
    providerReady.subscribe({
    asyncStart(provider) {
    console.log('Provider ready:', provider.constructor.name)
    },
    error(provider, error) {
    console.error('Provider ready failed:', provider.constructor.name, error)
    }
    })