writelnComment() public method

public writelnComment ( $message, $type = self::OUTPUT_NORMAL )
コード例 #1
0
ファイル: CLIErrorHandler.php プロジェクト: keepeye/EvaEngine
 public static function exceptionHandler(\Exception $e)
 {
     $output = new ConsoleOutput();
     $output->writelnError($e->getMessage());
     $output->writelnComment($e->getTraceAsString());
 }