• Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/classes/general/trackingservice.php
  • Класс: CBPTrackingService
  • Вызов: CBPTrackingService::doBackgroundCut
public function doBackgroundCut()
{
	$size = self::getLogSizeLimit();
	$list = array_keys($this->cutQueue);
	$this->cutQueue = [];//clear

	foreach ($list as $workflowId)
	{
		$this->cutLogSize($workflowId, $size);
	}
}