anboz/custom-logger

自定义日志记录器

dev-master 2023-10-04 08:16 UTC

This package is not auto-updated.

Last update: 2024-09-25 09:52:09 UTC


README

安装

composer require anboz/custom-logger

使用

add channel to 
config/logging.php
[
    'channels' => [ 
        //... 
        'custom-log' => [
            'driver' => 'custom',
            'via' => \Anboz\CustomLogger\Logging\LoggerFactory::class,
            'logger_name' => 'logs',
            'level' => 'debug',
            'ignore_exceptions' => false,
        ],       
        //...
    ]
]

\Log::alert('first alert test from anboz logging');
//result

img.png

_

img_1.png