Laravel 8 單項(xiàng)過濾

2021-07-09 15:22 更新

您可以通過在 TelescopeServiceProvider 中注冊(cè)的 filter 回調(diào)來過濾 Telescope 記錄的數(shù)據(jù)。默認(rèn)情況下,此回調(diào)會(huì)記錄 本地 環(huán)境中的所有數(shù)據(jù)以及所有其他環(huán)境中的異常、進(jìn)程中斷、計(jì)劃任務(wù)和帶有受監(jiān)控標(biāo)記的數(shù)據(jù):

/**
 * 注冊(cè)應(yīng)用服務(wù)
 *
 * @return void
 */
public function register()
{
    $this->hideSensitiveRequestDetails();

    Telescope::filter(function (IncomingEntry $entry) {
        if ($this->app->isLocal()) {
            return true;
        }

        return $entry->isReportableException() ||
            $entry->isFailedJob() ||
            $entry->isScheduledTask() ||
            $entry->hasMonitoredTag();
    });
} 
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)