Laravel 重写日志,让日志更优雅
优雅重构 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!'); // 输出错误日志
}
}
编程语言
- Laravel 重写日志,让日志更优雅
- 蓝色空间 天气小偷
- ASP UTF-8编码生成静态网页的函数
- Windows下简单的Mysql备份BAT脚本分享
- javascript 中select框触发事件过程的分析
- vue2.0 computed 计算list循环后累加值的实例
- json对象及数组键值的深度大小写转换问题详解
- Angular 表单控件示例代码
- Augularjs-起步详解
- Laravel如何使用数据库事务及捕获事务失败后的异
- javascript加载xml 并解析各节点的值(实现方法)
- js表格排序实例分析(支持int,float,date,string四种数
- 浅谈.net平台下深拷贝和浅拷贝
- js实现自动轮换选项卡
- php将mysql数据库整库导出生成sql文件的具体实现
- php中数组最简单的使用方法