阅读(2145)
赞(12)
Laravel 8 单项过滤
2021-07-09 14:25:44 更新
您可以通过在 TelescopeServiceProvider
中注册的 filter
回调来过滤 Telescope 记录的数据。默认情况下,此回调会记录 本地
环境中的所有数据以及所有其他环境中的异常、进程中断、计划任务和带有受监控标记的数据:
/**
* 注册应用服务
*
* @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();
});
}