CBPRestActivity::onDebugEvent

  1. Bitrix24 API (v. 23.675.0)
  2. bizproc
  3. CBPRestActivity
  4. onDebugEvent
  • Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/restactivity.php
  • Класс: CBPRestActivity
  • Вызов: CBPRestActivity::onDebugEvent
public function onDebugEvent(array $eventParameters = [])
{
	if ($this->executionStatus === CBPActivityExecutionStatus::Closed)
	{
		return;
	}

	$this->writeDebugTrack(
		$this->getWorkflowInstanceId(),
		$this->getName(),
		$this->executionStatus,
		$this->executionResult,
		$this->Title,
		BitrixMainLocalizationLoc::getMessage('BPRA_DEBUG_EVENT')
	);

	$this->Unsubscribe($this);
	$this->workflow->CloseActivity($this);
}

Добавить комментарий