Laravel - 将控制台输出写入日志文件

Ale*_*ldi 5 php laravel

我有一个输出一些行的命令:

/**
  * Execute the console command.
  *
  * @return mixed
  */
public function handle()
{
    $this->line('');
    $this->info('--------------------------------------------------------');
    $this->info('----------------- Compress documents -------------------');
    $this->info('--------------------------------------------------------');
    $this->line('');
    $progressBar = $this->output->createProgressBar(3);
    $this->info('Selecting files...');
    // ...
    $progressBar->advance();
    $this->info('Processing...');
    // ...
    $progressBar->advance();
    $this->info('Moving files...');
    // ...
    $progressBar->advance();
    $this->info('--------------------------------------------------------');
    $this->info('------------------------ Result ------------------------');
    $this->info('--------------------------------------------------------');
    // ...
    $this->info('Output quality: '.$resolution.'%');
    $this->info('Processed files: '.sizeof($files));
    $this->info('Original size: '.number_format($originalPathSize, 3).'MB');
    $this->info('Compressed size:'.number_format($compressedPathSize, 3).'MB');
    $this->info('Improvement: '.number_format($compressedPathSizeDiff, 3).'MB ('.number_format($compressedPathSizeDiffPercent, 3).'%)');
    $this->info('Total time: '.$timeFormatted);
    // ...
    $this->table($headers, $rows);
    $this->info('Ready!');
}
Run Code Online (Sandbox Code Playgroud)

它就像一个魅力。

问题是,现在我需要在生产服务器中运行此命令(通过 SSH),并且必须花费几个小时才能处理所有文件。显然我不想在此期间保持登录状态来查看控制台输出。

正如调度任务一样,有某种方法可以将控制台命令输出“自动”写入日志文件吗?

Vid*_*dal 4

可以使用screenlinux命令。 屏幕示例

你可以保存输出,例如

#screen
#php artisan command > /etc/commandResults.log

Run Code Online (Sandbox Code Playgroud)