logavel/track-logs

此包可以帮助您跟踪 PHP 日志

1.0.5 2023-10-27 09:13 UTC

This package is not auto-updated.

Last update: 2024-09-28 08:33:16 UTC


README

在 App/Exceptions/Handler.php 中添加此行

App/Exceptions/Handler.php

use Logavel\TrackLogs\Log;
use Throwable;

public function report(Throwable $exception)
    {
        if ($this->shouldReport($exception)) {
            Log::log($exception->getMessage());
            parent::report($exception);
        }
    }