For the complete documentation index, see llms.txt. This page is also available as Markdown.

Logging

Configuring logging in Ecotone Lite applications

Logging with Ecotone Lite

In order to setup logs for Ecotone Lite, we will need to pass PSR compatible Logger to known Services.

$ecotoneLite = EcotoneLite::bootstrap(
    [OrderService::class],
    containerOrAvailableServices: [
        // pass your Logger here
        'logger' => $loggerService,
    ]
)

Last updated

Was this helpful?