force true telescope

This commit is contained in:
Irwan Cahyono 2026-03-17 13:24:21 +07:00
parent 744c38ba83
commit 167cf5c680

View File

@ -23,12 +23,13 @@ public function register(): void
$isLocal = $this->app->environment('local'); $isLocal = $this->app->environment('local');
Telescope::filter(function (IncomingEntry $entry) use ($isLocal) { Telescope::filter(function (IncomingEntry $entry) use ($isLocal) {
return $isLocal || // return $isLocal ||
$entry->isReportableException() || // $entry->isReportableException() ||
$entry->isFailedRequest() || // $entry->isFailedRequest() ||
$entry->isFailedJob() || // $entry->isFailedJob() ||
$entry->isScheduledTask() || // $entry->isScheduledTask() ||
$entry->hasMonitoredTag(); // $entry->hasMonitoredTag();
return true;
}); });
} }