W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
您可以通過在 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();
});
}
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: