I’m trying to use https://stackoverflow.com/a/46767123/499915 workaround for sending logs from Laravel Scheduler jobs to stdout. In fact, it’s just using a symlink like
ln -sf /proc/1/fd/1 /var/log/laravel-scheduler.log
This works nice, but Telescope module doesn’t like this symlink, it fails with
Failed to open stream: No such file or directory {"exception":"[object] (ErrorException(code: 0): file_get_contents(/var/www/logs/laravel-scheduler.log): Failed to open stream: No such file or directory at /var/www/vendor/laravel/telescope/src/Watchers/ScheduleWatcher.php:68)"}
Is there a way to eliminate this error?