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');
Telescope::filter(function (IncomingEntry $entry) use ($isLocal) {
return $isLocal ||
$entry->isReportableException() ||
$entry->isFailedRequest() ||
$entry->isFailedJob() ||
$entry->isScheduledTask() ||
$entry->hasMonitoredTag();
// return $isLocal ||
// $entry->isReportableException() ||
// $entry->isFailedRequest() ||
// $entry->isFailedJob() ||
// $entry->isScheduledTask() ||
// $entry->hasMonitoredTag();
return true;
});
}