diff --git a/app/Utilities/Console.php b/app/Utilities/Console.php index 399a7f1ef..808739682 100644 --- a/app/Utilities/Console.php +++ b/app/Utilities/Console.php @@ -20,7 +20,11 @@ class Console return true; } - return $all_output ? $process->getOutput() : $process->getErrorOutput(); + $output = $all_output ? $process->getOutput() : $process->getErrorOutput(); + + logger($output); + + return $output; } public static function getPhpBinary()