TP6.0 自定义日志驱动
2024-09-09
36
1. 新增日志通道配置
// 其它日志通道配置
'log' => [
// 日志记录方式
'type' => app\driver\Log::class,
// 日志保存目录
'path' => app()->getRootPath() . 'log',
],
2. 自定义日志驱动类
自定义日志驱动,需要实现 think\contract\LogHandlerInterface
接口
参考TP6.0官方文档完全开发手册 : https://www.kancloud.cn/manual/thinkphp6_0/1037616#_377
interface LogHandlerInterface
{
/**
* 日志写入接口
* @access public
* @param array $log 日志信息
* @return bool
*/
public function save(array $log): bool;
}
<?php
declare (strict_types = 1);
namespace app\driver;
use think\facade\Log as LogFacade;
use think\contract\LogHandlerInterface;
/**
* 自定义日志驱动
*/
class Log implements LogHandlerInterface
{
/**
* 构造方法
*/
public function __construct()
{
// 获取日志通道配置信息
$this->config = LogFacade::getChannelConfig('log');
}
/**
* 保存日志
* @param array $data
*/
public function save(array $data): bool
{
foreach ($data as $type => $item ) {
foreach ( $item as $value ) {
$this->write($type, ['type' => $type,'value' => $value]);
}
}
return true;
}
/**
* 执行写入文件
* @param [type] $type
* @param [type] $data
* @return void
*/
public function write($type, $data)
{
$path = implode('/', [$this->config['path'], $type . '.log']);
if ( ! file_exists(dirname($path)) ) mkdir(dirname($path), 0777, true);
$content = '------------ ' . date('Y-m-d H:i:s') . ' ------------' . PHP_EOL . PHP_EOL . var_export($data, true) . PHP_EOL . PHP_EOL;
file_put_contents($path, $content, FILE_APPEND);
}
}
3. 写入日志
更新于:2个月前use think\facade\Log;
Log::channel('log')->record('测试日志信息');
赞一波!
相关文章
- 【说站】java自定义注解是什么?
- .NET Core 日志配置,NLog配置示例
- 【说站】python使用loguru操作日志
- 【说站】python loguru如何记录日志
- VSCode 自定义字体、连字效果
- TP6.0命令行之自定义指令
- JavaScript 常用自定义功能函数
- TP6.0 自定义命令创建类文件
- TP6.0 自定义异常处理类
- 自定义事件子组件与父组件通信
- ThinkPHP6.0自定义异常页面模板文件
- .NET Core NLog日志存入数据库配置
- 通过Linux命令分析Nginx日志得知百度蜘蛛的爬行情况
- C++数据类型详解:从基本类型到自定义类型
- C#中自定义class在调试时如何定制对象显示的内容
- Qt自定义控件的开发流程
- 解决log4j未写入日志文件的问题
- 大分类显示自定义模型字段的方法
- 自定义字段灵活使用(背景图设置)方法
- 会员登录样式自定义及更换登录地址
文章评论
评论问答