topthink / think-log
think log
v2.0.1
2019-07-07 14:47 UTC
Requires
- php: >=7.1.0
- psr/log: ~1.0
- topthink/think-container: ^2.0
This package is auto-updated.
Last update: 2024-09-08 22:27:35 UTC
README
写入LOG日志,要求PHP7.1+。
主要特性
- 多通道日志写入
- 日志实时/延时写入
- 日志信息格式化
- 日志信息处理机制
- 支持JSON格式
- 日志自动清理
安装
composer require topthink/think-log
用法
use think\facade\Log; Log::init([ 'default' => 'file', 'channels' => [ 'file' => [ 'type' => 'file', 'path' => './logs/', ], ], ]); Log::error('error info'); Log::info('log info'); Log::save(); Log::channel('channel_name')->error('test error');