diff --git a/src/Shell/Shell.php b/src/Shell/Shell.php index 4aeab7745..b1565b494 100644 --- a/src/Shell/Shell.php +++ b/src/Shell/Shell.php @@ -106,6 +106,9 @@ private function handleOutput(ProcessInterface $process) if ($output = $process->getOutput()) { $this->logger->debug($output); } + if ($errorOutput = $process->getErrorOutput()) { + $this->logger->debug('Error: ' . $errorOutput); + } } catch (LogicException $exception) { $this->logger->error('Can\'t get command output: ' . $exception->getMessage()); }