DataSift\Storyplayer\Console\DefaultConsole::logPhaseSubprocessOutput PHP Method

logPhaseSubprocessOutput() public method

called when a story logs the (possibly partial) output from running a subprocess
public logPhaseSubprocessOutput ( string $msg ) : void
$msg string the output to log
return void
    public function logPhaseSubprocessOutput($msg)
    {
        // show the user that *something* happened
        if (!$this->isSilent()) {
            $this->write(".", $this->writer->miniActivityStyle);
        }
    }