log error output

This commit is contained in:
denisdulici 2020-03-19 17:34:24 +03:00
parent 437cbd323d
commit 7b0a5d8875

View File

@ -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()