setName('log:watch'); $this->setDescription('Outputs the last parts of the log files and follows as the log file grows. Does not work on Windows'); } protected function doExecute(): int { $path = StaticContainer::get('path.tmp') . '/logs/'; $cmd = sprintf('tail -f %s*.log', $path); $this->getOutput()->writeln('Executing command: ' . $cmd); passthru($cmd); return self::SUCCESS; } }