Laravel 重寫日志,讓日志更優雅

更改目的:

  • 重寫瞭日志格式
  • 加入trace,一次請求的唯一標識
  • 加入error級別信息推送,事例中使用企業微信群助手
  • 讓我們可以更及時、更優雅、更方便追蹤日志信息
  • 有助於初學者瞭解Laravel框架

1。將文件 AppTool.phpLogger.phpLogServiceProvider.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 。日志內容

註意事項:

修改如下代碼不同版本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'];
    });
    ……
有關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 命令行輸出:

到此這篇關於Laravel 重寫日志,讓日志更優雅的文章就介紹到這瞭,更多相關Laravel 重寫日志內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: