Skip to content

Files

Latest commit

 

History

History
19 lines (16 loc) · 312 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 312 Bytes

Frankie Logger Module

Add Monolog to your project

[
    ...,
    new LoggerModule([
        'name' => 'default',
        'handlers' => [
            StreamHandler::class => [
                'path' => '/tmp/test.log',
                'level' => Logger::DEBUG,
            ],
        ],
    ]),
]