Laravel 8 可用的监听器
2021-07-26 10:03 更新
当在控制台执行命令或处理请求时,Telescope 监听器会收集应用程序数据。 您可以在 config/telescope.php
配置文件中自定义要启用监听器的列表:
'watchers' => [
Watchers\CacheWatcher::class => true,
Watchers\CommandWatcher::class => true,
...
],
一些监听器还允许您提供其他自定义选项:
'watchers' => [
Watchers\QueryWatcher::class => [
'enabled' => env('TELESCOPE_QUERY_WATCHER', true),
'slow' => 100,
],
...
],
以上内容是否对您有帮助:
更多建议: