env('LOG_CHANNEL', 'stack'), 'channels' => [ 'stack' => [ 'driver' => 'stack', 'channels' => ['daily', 'stderr'], ], 'daily' => [ 'driver' => 'daily', 'path' => storage_path('logs/lumen_log.html'), 'formatter' => Monolog\Formatter\HtmlFormatter::class, 'level' => 'debug', 'days' => 14, ], 'stderr' => [ 'driver' => 'monolog', 'handler' => StreamHandler::class, 'formatter' => Monolog\Formatter\LineFormatter::class, 'level' => 'debug', 'with' => [ 'stream' => 'php://stderr', ], ], 'null' => [ 'driver' => 'monolog', 'handler' => NullHandler::class, ], ], ];