DataSift\Storyplayer\Console\DevModeConsole::logCliErrorWithException PHP 메소드

logCliErrorWithException() 공개 메소드

public logCliErrorWithException ( string $msg, Exception $e ) : void
$msg string
$e Exception
리턴 void
    public function logCliErrorWithException($msg, $e)
    {
        $this->write("*** error: {$msg}" . PHP_EOL . PHP_EOL . "This was caused by an unexpected exception " . get_class($e) . PHP_EOL . PHP_EOL . $e->getTraceAsString() . PHP_EOL);
    }