From f9261b1db25d1602cd28e2efdee236bf720fd332 Mon Sep 17 00:00:00 2001 From: Mike Churchward Date: Thu, 30 May 2024 13:52:21 -0400 Subject: [PATCH] TW20830473 Removing debugging. --- src/Command/CodeCheckerCommand.php | 3 --- 1 file changed, 3 deletions(-) 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));