首页 > 解决方案 > 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!');
}

它就像一个魅力。

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

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

标签: phplaravel

解决方案


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

你可以像这样保存输出

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


推荐阅读