Laravel 重写日志,让日志更优雅

网络编程 2025-03-29 19:31www.168986.cn编程入门

优雅重构 Laravel 日志系统,信息记录更便捷

二、实施步骤

1. 将 AppTool.php、Logger.php 和 LogServiceProvider.php 这三个文件复制到 app/Providers 文件夹下,然后将 BaseCommand.php 文件复制到 App\Console 下。

2. 在 config/app.php 文件中的 providers 数组中加入以下内容:

```php

'providers' => [

// ...

// 注册日志服务提供者

App\Providers\LogServiceProvider::class,

// ...

];

```

3. 在项目中使用日志时,可以通过以下方式调用:

对于 php-fpm 方式,日志路径为 /opt/logs/x.log 或 /opt/logs/x.error,调用方式如下:

```php

\Log::info("info");

\Log::debug("debug");

\Log::error("error");

```

对于 cli 方式,日志路径为 /opt/clogs/x.log 或 /opt/clogs/x.error,调用方式如下:

```php

app('cLog')->info("info");

app('cLog')->debug("debug");

app('cLog')->error("error");

```

4. 当日志级别设置为 error 时,系统将执行推送操作。在本次改进中,我们采用了企业微信群进行推送。推送错误信息的方法如下:

```php

public function pushErrorMessage($message) {

$content = "app". static::getAppName() ."src ". static::getRequestSource() ."trace". self::getTrace() ."url". static::$uri_info ." error: ". $message ."time". date("Y-m-d H:i:s");

// 测试群推送地址

$url = "";

$result = app('\GuzzleHttp\Client')->request('POST', $url, [

\GuzzleHttp\RequestOptions::JSON => [

"msgtype" => "text",

"text" => [

"content" => $content

]

]

]);

$body = \GuzzleHttp\json_decode($result->getBody()->getContents(), true);

}

```

三、日志内容及其注意事项:

让我们来看一个示例代码片段,其中涉及到对日志系统的修改。原始的代码中,日志管理器的配置如下:

```php

'log' => [\Illuminate\Log\LogManager::class, \Psr\Log\LoggerInterface::class],

```

我们可以通过以下方式对其进行修改:

我们需要注入全局容器中的日志实例。然后,我们可以使用`bind`方法来绑定`Psr\Log\LoggerInterface`和`\Illuminate\Log\LogManager`的实例。这样,我们就可以在应用程序中更方便地使用日志系统。以下是修改后的代码示例:

```php

// 注入全局容器中的日志实例

$app->instance('Log', $logger);

$app->bind('Psr\Log\LoggerInterface', function (Application $app) {

return $app['log']->getLogger();

});

$app->bind('\Illuminate\Log\LogManager', function (Application $app) {

return $app['log'];

});

```

```php

use App\Console\BaseCommand;

class Demo extends BaseCommand {

protected $signature = 'mand:demo'; // 命令签名

protected $description = 'Demo command description'; // 命令描述

public function __construct() {

parent::__construct(); // 调用父构造函数

}

public function handle() {

$this->info('This is an info message!'); // 输出信息日志

$this->line('This is a line message with custom formatting.'); // 输出带自定义格式的行信息

$this->error('This is an error message with important details!'); // 输出错误日志

}

}

上一篇:蓝色空间 天气小偷 下一篇:没有了

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by