laravel 提供了一种方法来扩展 php 函数的日志记录:安装 monolog/monolog 扩展。在 config/logging.php 中配置 custom 日志通道。使用 \illuminate\support\facades\log 门面记录自定义日志。

使用 Laravel 扩展 PHP 函数的日志记录
Laravel 提供了一个简洁的方式来扩展 PHP 函数的日志记录,让你轻松地为应用程序中的自定义日志记录添加支持。
安装扩展
立即学习“PHP免费学习笔记(深入)”;
安装 monolog/monolog 扩展:
composer require monolog/monolog
配置扩展
在 config/logging.php 配置文件中,添加以下配置:
'channels' => [
'custom' => [
'driver' => 'monolog',
'handler' => 'custom',
'formatter' => env('LOG_CUSTOM_FORMATTER', 'default'),
'level' => env('LOG_CUSTOM_LEVEL', 'debug'),
],
],
'handlers' => [
'custom' => [
'type' => 'monolog',
'path' => env('LOG_CUSTOM_PATH', storage_path('logs/custom.log')),
],
],使用扩展
使用 \Illuminate\Support\Facades\Log 门面来记录自定义日志:
Log::channel('custom')->debug('Custom log message');实战案例
创建一个用于记录 API 请求和响应的自定义日志:
class ApiRequestLogMiddleware
{
public function handle($request, $next)
{
$start = microtime(true);
$response = $next($request);
$duration = microtime(true) - $start;
Log::channel('api')->info('Request: {method} {uri} - Duration: {duration} ms', [
'method' => $request->method(),
'uri' => $request->uri(),
'duration' => round($duration * 1000, 2),
]);
return $response;
}
}











