DataSift\Storyplayer\Console\DevModeConsole::logPhaseSubprocessOutput PHP Метод

logPhaseSubprocessOutput() публичный Метод

called when a story logs the (possibly partial) output from running a subprocess
public logPhaseSubprocessOutput ( string $msg ) : void
$msg string the output to log
Результат void
    public function logPhaseSubprocessOutput($msg)
    {
        // show the user that *something* happened
        if (!$this->isSilent()) {
            $this->write(rtrim($msg) . PHP_EOL);
        }
    }