这是ViSwoole的日志模块

1.0.1 2024-04-03 05:25 UTC

This package is auto-updated.

Last update: 2024-04-26 07:30:46 UTC


README

ViSwoole日志模块

安装

composer require viswoole/log

使用

use Visoole\Log\Facade\Log;

Log::info('info');
Log::debug('debug');
Log::error('error');
Log::warning('warning');
Log::notice('notice');
Log::critical('critical');
Log::alert('alert');
Log::emergency('emergency');
Log::log('level','自定义等级事件',['key'=>'value']); // 输出具有任意等级的日志