コード例 #1
0
 public function __construct(Ezer_BusinessProcessServer $server, $php_exe, $handlerPath = null)
 {
     if (is_null($handlerPath)) {
         $handlerPath = dirname(__FILE__) . '/Ezer_BusinessProcessHandler.php';
     }
     Ezer_Log::log("Handler Path [{$handlerPath}]");
     parent::__construct($server, $handlerPath, $php_exe);
 }
コード例 #2
0
 public function log($text)
 {
     Ezer_Log::log($text);
 }
コード例 #3
0
 public function writeToAll($text)
 {
     Ezer_Log::log($text);
     parent::writeToAll("{$text}\r\n");
 }
コード例 #4
0
ファイル: Ezer_Log.php プロジェクト: reginaldoandrade/ezerphp
 public static function setLogger(Ezer_Logger $logger)
 {
     self::$logger = $logger;
 }
コード例 #5
0
 public function failed($err)
 {
     Ezer_Log::err(get_class($this) . " [" . $this->getName() . "] failed ({$err})");
     $this->setStatus(Ezer_StepInstanceStatus::FAILED);
 }