diff --git a/src/Command/CodeCheckerCommand.php b/src/Command/CodeCheckerCommand.php index ce5b96a..61f9a8d 100644 --- a/src/Command/CodeCheckerCommand.php +++ b/src/Command/CodeCheckerCommand.php @@ -156,12 +156,9 @@ protected function execute(InputInterface $input, OutputInterface $output): int array_push($cmd, '--runtime-set', 'moodleLicenseRegex', $licenseRegex); // Add the files to process. - $output->writeln(sprintf('Number of files requested %d', count($files))); foreach ($files as $file) { - $output->writeln(sprintf('Adding file %s', $file)); $cmd[] = $file; } - $output->writeln(sprintf('Number of files loaded %d', count($cmd))); $process = $this->execute->passThroughProcess(new Process($cmd, $this->plugin->directory, null, null, null));