Definition
/**
* Create a ConsoleLogExporter.
*
* Outputs log records to the console with severity-based coloring.
* Useful for debugging and development.
*
* @param bool $colors Whether to use ANSI colors (default: true)
* @param null|int $maxBodyLength Maximum length for body+attributes column (null = no limit, default: 100)
* @param ConsoleLogOptions $options Display options for the exporter
*/
console_log_exporter(bool $colors, ?int $maxBodyLength, ConsoleLogOptions $options) : ConsoleLogExporter