diff --git a/src/FpmRuntime/FpmHandler.php b/src/FpmRuntime/FpmHandler.php index 8467ce1d9..b86e24921 100644 --- a/src/FpmRuntime/FpmHandler.php +++ b/src/FpmRuntime/FpmHandler.php @@ -215,7 +215,8 @@ private function waitUntilReady(): void // If the process has crashed we can stop immediately if (! $this->isFpmRunning()) { - throw new Exception('PHP-FPM failed to start: ' . PHP_EOL . $this->fpm->getOutput() . PHP_EOL . $this->fpm->getErrorOutput()); + // The output of FPM is in the stderr of the Lambda process + throw new Exception('PHP-FPM failed to start'); } } }