skip to Main Content

I’m encountering an issue with Laravel Telescope in my local development environment where it logs a console command named list every minute, even though my application isn’t explicitly triggering it.

Image #1
Image #2

Environment:

Laravel version: v11.22.0
Laravel Sail for local development in WSL2 (in devcontainer)
Telescope installed only in the local environment
OS: Linux

Every minute, Telescope logs a console command entry for list. This is cluttering my logs, and I can’t figure out what is triggering it. I haven’t set any scheduled tasks or cron jobs that should be running this command.

I’ve searched through my application code but found no references to list being executed manually. I also tried disabling Telescope temporarily, and the logs stopped showing the command, so it seems related to Telescope.
Steps I’ve taken:

Checked all cron jobs (none related to list)
Verified that no other processes are triggering the list command
Looked through my codebase for possible causes but found nothing

Has anyone encountered a similar issue, or does anyone know why Telescope might be logging this?

2

Answers


  1. I have the same issue. You can add this to the Telescope configuration file so it doesn’t show:

    'watchers' => [
        LaravelTelescopeWatchersCommandWatcher::class => [
            'enabled' => env('TELESCOPE_COMMAND_WATCHER', true),
            'ignore' => [
                'list',
            ],
        ],
    ],
    
    Login or Signup to reply.
  2. I had the same issue and found that the Laravel Extra Intellisense VS Code extension was triggering the list command about every minute. Disabling this extension solved the problem but may limit some autocompletion features added by this extension.

    https://marketplace.visualstudio.com/items?itemName=amiralizadeh9480.laravel-extra-intellisense

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search