Log
Testing Is Documentation
日志记录统一由日志组件完成,通常我们使用代理 \Leevel\Log\Proxy\Log
类进行静态调用。
内置支持的 log 驱动类型包括 file、syslog,未来可能增加其他驱动。
TIP
日志遵循 PSR-3 规范,用法与主流框架完全一致。
使用方式
使用容器 logs 服务
\App::make('logs')->emergency(string $message, array $context = []): void;
\App::make('logs')->alert(string $message, array $context = []): void;
\App::make('logs')->critical(string $message, array $context = []): void;
\App::make('logs')->error(string $message, array $context = []): void;
\App::make('logs')->warning(string $message, array $context = []): void;
\App::make('logs')->notice(string $message, array $context = []): void;
\App::make('logs')->info(string $message, array $context = []): void;
\App::make('logs')->debug(string $message, array $context = []): void;
\App::make('logs')->log(string $level, string $message, array $context = []): void;
依赖注入
class Demo
{
private \Leevel\Log\Manager $log;
public function __construct(\Leevel\Log\Manager $log)
{
$this->log = $log;
}
}
使用静态代理
\Leevel\Log\Proxy\Log::emergency(string $message, array $context = []): void;
\Leevel\Log\Proxy\Log::alert(string $message, array $context = []): void;
\Leevel\Log\Proxy\Log::critical(string $message, array $context = []): void;
\Leevel\Log\Proxy\Log::error(string $message, array $context = []): void;
\Leevel\Log\Proxy\Log::warning(string $message, array $context = []): void;
\Leevel\Log\Proxy\Log::notice(string $message, array $context = []): void;
\Leevel\Log\Proxy\Log::info(string $message, array $context = []): void;
\Leevel\Log\Proxy\Log::debug(string $message, array $context = []): void;
\Leevel\Log\Proxy\Log::log(string $level, string $message, array $context = []): void;
log 配置
系统的 log 配置位于应用下面的 option/log.php
文件。
可以定义多个日志连接,并且支持切换,每一个连接支持驱动设置。
<?php
declare(strict_types=1);
/*
* This file is part of the your app package.
*
* The PHP Application For Code Poem For You.
* (c) 2018-2099 http://yourdomian.com All rights reserved.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
return [
/*
* ---------------------------------------------------------------
* 默认日志驱动
* ---------------------------------------------------------------
*
* 系统为所有日志提供了统一的接口,在使用上拥有一致性
*/
'default' => Leevel::env('LOG_DRIVER', 'file'),
/*
* ---------------------------------------------------------------
* 允许记录的日志级别
* ---------------------------------------------------------------
*
* 默认为 debug、info、notice、warning、error、critical、alert 和 emergency
*/
'levels' => [
'debug',
'info',
'notice',
'warning',
'error',
'critical',
'alert',
'emergency',
],
/*
* ---------------------------------------------------------------
* 频道
* ---------------------------------------------------------------
*
* 隔离不同环境的日志
*/
'channel' => Leevel::env('ENVIRONMENT', 'development'),
/*
* ---------------------------------------------------------------
* 是否启用缓冲
* ---------------------------------------------------------------
*
* 启用缓冲可以降低磁盘或网络的 IO 请求以提升性能
*/
'buffer' => true,
/*
* ---------------------------------------------------------------
* 缓冲数量
* ---------------------------------------------------------------
*
* 日志数量达到缓冲数量会执行一次 IO 操作
*/
'buffer_size' => 100,
/*
* ---------------------------------------------------------------
* 日志连接参数
* ---------------------------------------------------------------
*
* 这里为所有的日志的连接参数,每一种不同的驱动拥有不同的配置
* 虽然有不同的驱动,但是在日志使用上却有着一致性
*/
'connect' => [
'file' => [
// driver
'driver' => 'file',
// 频道
'channel' => null,
// 日志文件名时间格式化
'name' => 'Y-m-d H',
// 默认的日志路径
'path' => Leevel::runtimePath('log'),
// 日志行时间格式化,支持微秒
'format' => 'Y-m-d H:i:s u',
// 日志文件权限
'file_permission' => null,
// 是否使用锁
'use_locking' => false,
],
'syslog' => [
// driver
'driver' => 'syslog',
// 频道
'channel' => null,
// 存储 @see \Monolog\Handler\AbstractSyslogHandler
'facility' => LOG_USER,
// 等级
'level' => 'debug',
// 日志行事件格式化,支持微秒
'format' => 'Y-m-d H:i:s u',
],
],
];
log 参数根据不同的连接会有所区别,通用的 log 参数如下:
配置项 | 配置描述 |
---|---|
levels | 允许记录的日志级别 |
channel | 频道 |
buffer | 是否启用缓冲 |
buffer_size | 日志数量达到缓冲数量会执行一次 IO 操作 |
注意
QueryPHP 的日志如果启用了缓冲,会在日志数量达到缓冲数量会执行一次 IO 操作。
Uses
<?php
use Leevel\Filesystem\Helper;
use Leevel\Log\File;
use Leevel\Log\ILog;
use Monolog\Logger;
log 基本使用
除了 PSR-3 支持的方法外,系统还提供了一些额外方法。
支持的日志类型
# Tests\Log\LogTest::baseUseProvider
public function baseUseProvider(): array
{
return [
['emergency'],
['alert'],
['critical'],
['error'],
['warning'],
['notice'],
['info'],
['debug'],
];
}
获取日志记录数量
# Leevel\Log\ILog::count
/**
* 获取日志记录数量.
*/
public function count(?string $level = null): int;
获取当前日志记录
# Leevel\Log\ILog::all
/**
* 获取当前日志记录.
*
* - 每次 IO 写入后会执行一次清理
*/
public function all(?string $level = null): array;
清理日志记录
# Leevel\Log\ILog::clear
/**
* 清理日志记录.
*/
public function clear(?string $level = null): void;
public function testBaseUse(string $level): void
{
$log = $this->createFileConnect();
$this->assertInstanceof(ILog::class, $log);
$this->assertNull($log->{$level}('foo', ['hello', 'world']));
$this->assertSame([$level => [[$level, 'foo', ['hello', 'world']]]], $log->all());
$this->assertSame([[$level, 'foo', ['hello', 'world']]], $log->all($level));
$this->assertSame(1, $log->count());
$this->assertSame(1, $log->count($level));
$this->assertNull($log->clear($level));
$this->assertSame([], $log->all($level));
$this->assertNull($log->clear());
$this->assertSame([], $log->all());
$this->assertSame([], $log->all($level));
$this->assertInstanceOf(Logger::class, $log->getMonolog());
Helper::deleteDirectory(__DIR__.'/cacheLog');
}
日志支持等级过滤
public function testLogFilterLevel(): void
{
$log = $this->createFileConnect(['levels' => [ILog::INFO]]);
$log->log(ILog::INFO, 'foo', ['hello', 'world']);
$log->log(ILog::DEBUG, 'foo', ['hello', 'world']);
$this->assertSame([ILog::INFO => [[ILog::INFO, 'foo', ['hello', 'world']]]], $log->all());
}
日志支持默认等级 debug
public function testLogLevelNotFoundWithDefaultLevel(): void
{
$log = $this->createFileConnect(['levels' => [ILog::DEBUG]]);
$log->log('notfound', 'foo', ['hello', 'world']);
$this->assertSame([ILog::DEBUG => [[ILog::DEBUG, 'foo', ['hello', 'world']]]], $log->all());
$log->flush();
}
日志支持消息分类
系统提供的等级 level
无法满足大型项目的日志需求,于是对消息 message
定义了一套规则来满足更精细的分类。
日志消息分类规则
# Leevel\Log\Log::parseMessageCategory
public static function parseMessageCategory(string $message): string
{
if (preg_match('/^\[([a-zA-Z_0-9\-:.\/]+)\]/', $message, $matches)) {
return str_replace(':', '/', $matches[1]);
}
return '';
}
TIP
消息开头满足 [大小写字母|数字|下划线|中横线|点号|斜杆|冒号]
会被识别为消息分类,其中冒号会被转化为斜杆。
目前消息分类会作为文件类日志目录,支持无限层级目录。
public function testLogMessageCategory(): void
{
$log = $this->createFileConnect();
$log->log(ILog::INFO, '[SQL] foo', ['hello', 'world']);
$log->log(ILog::INFO, '[SQL:FAILED] foo', ['hello', 'world']);
$this->assertSame([
ILog::INFO => [
[ILog::INFO, '[SQL] foo', ['hello', 'world']],
[ILog::INFO, '[SQL:FAILED] foo', ['hello', 'world']],
],
], $log->all());
$log->flush();
}