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);
 }
Example #2
0
 public function log($text)
 {
     Ezer_Log::log($text);
 }
 public function writeToAll($text)
 {
     Ezer_Log::log($text);
     parent::writeToAll("{$text}\r\n");
 }