topthink/think-log

think log

v2.0.1 2019-07-07 14:47 UTC

This package is auto-updated.

Last update: 2024-03-08 21:01:11 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');

更多内容可以参考 https://www.kancloud.cn/manual/thinkphp6_0/1037616