CRON JOB - LARAVEL - OUTPUT
You should use the built-in task output method in Laravel.
For example:
$file = 'command1_output.log';
$schedule->command('command1')
->sendOutputTo($file);
Everything is ok now.
$schedule->command('command1')
->sendOutputTo($file);
and inside your command
$this->info('test')
The files are created in the root folder of my application so I didn't see them !
Thank you