Skip to content

laravel5.5+ && laravel6.x && laravel7.x && laravel8.x 重写日志系统,加入trace自定义日记格式,增加error推送

Notifications You must be signed in to change notification settings

kai-xx/laravel-rewrite-logger

Repository files navigation

Laravel Version Laravel Version

更改目的:

  • 重写了日志格式
  • 加入trace,一次请求的唯一标识
  • 加入error级别信息推送,事例中使用企业微信群助手
  • 让我们可以更优雅、更方便追踪日志信息
  1. 将文件 AppTool.php Logger.php LogServiceProvider.php 复制到 app/Providers文件夹下, 将文件BaseCommand.php复制到App\Console

  2. config/app.php→providers中加入

    'providers' => [
      ……
      // 注册日志
       App\Providers\LogServiceProvider::class
      ……
      ];
  3. 在项目中使用如下方式调用

    // php-fpm方式调用 日志路径 /opt/logs/xxx.log /opt/logs/xxx.error
    \Log::info("info");
    \Log::debug("debug");
    \Log::error("error");
    // 在cli方式调用 日志路径 /opt/clogs/xxx.log /opt/clogs/xxx.error
    app('cLog')->info("info");
    app('cLog')->debug("debug");
    app('cLog')->error("error");
  4. 在日志级别为error时,会执行推送,本事例中采用企业微信群推送

        /**
         * 推送错误信息
         * @param $message
         */
        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 = "xxxxxxxxxxxx";
            $result = app('\GuzzleHttp\Client')->request('POST', $url, [
                \GuzzleHttp\RequestOptions::JSON=>[
                    "msgtype"=> "text",
                    "text"=> [
                        "content" => $content
                    ]
                ]
            ]);
            $body = \GuzzleHttp\json_decode($result->getBody()->getContents(), true);
        }
  5. 日志内容

// cli模式下的
[2019-11-11 17:50:01] local.INFO: [app:partner-counselor src:127.0.0.1 time:406 trace:20ba14b9 url:App\Console\Commands\TrailPushMessage@handle href:N] 推送未锁定商机信息-未锁定: 结束执行

// php-fpm模式下
[2019-11-08 18:58:57] local.INFO: [app:partner-counselor src:127.0.0.1 time:36 trace:3633ccee url:GEThttp://127.0.0.1:50111/api/customers/348 href:N] 请求的数据为:{"token":"bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJodHRwOlwvXC8xMjcuMC4wLjE6NTAxMTFcL2FwaVwvYXV0aFwvbG9naW4iLCJpYXQiOjE1NzMyMDQwMzAsImV4cCI6MTU3MzgwODgzMCwibmJmIjoxNTczMjA0MDMwLCJqdGkiOiJZV2RsMU9PdFBOMTV3ZmNZIiwic3ViIjo2LCJwcnYiOiIyNTE5NzdjOTQ4NzExYTE4NDQyNGQ1ZDFmNjQ4Y2U0Mjg1NzQ5YmQwIn0.KTA7a8v5jw80O2WrXMHeVsJSeiv194hsTYHQEn_2KCo"}

注意事项:

  1. 修改如下代码不同版本bind部分会有所不同,具体根据\Illuminate\Foundation\Application::registerCoreContainerAliaseslog信息修改。 如laravel6.x中为'log' => [\Illuminate\Log\LogManager::class, \Psr\Log\LoggerInterface::class],,修改方式就如下方代码
        ……
        // 注入全局容器
        $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'];
        });
        ……
  1. 有关console中使用时,建议重写\Illuminate\Console\Command::info \Illuminate\Console\Command::line \Illuminate\Console\Command::error,然后所有console继承BaseCommand demo代码块:
use App\Console\BaseCommand;

class Demo extends BaseCommand
{
    protected $signature = 'command:demo';
    protected $description = 'demo';
    public function __construct()
    {
        parent::__construct();
    }
    public function handle()
    {
        $this->info('this is info!');
        $this->line('this is line!');
        $this->error('this is error!!!');
    }
}

demo 命令行输出:

命令行输出信息 命令行输出信息

About

laravel5.5+ && laravel6.x && laravel7.x && laravel8.x 重写日志系统,加入trace自定义日记格式,增加error推送

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Languages