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

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

    // Track provider startup order
    const startupOrder: string[] = []
    providerStart.subscribe({
    asyncStart(provider) {
    startupOrder.push(provider.constructor.name)
    }
    })