• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/debug.php
  • Класс: BitrixLandingDebug
  • Вызов: Debug::log
static function log($itemId, $itemDesc, $typeId = 'LANDING_LOG')
{
	if (is_array($itemDesc))
	{
		$itemDesc = print_r($itemDesc, true);
	}
	CEventLog::add([
		'SEVERITY' => 'NOTICE',
		'AUDIT_TYPE_ID' => $typeId,
		'MODULE_ID' => 'landing',
		'ITEM_ID' => $itemId,
		'DESCRIPTION' => $itemDesc
	]);
}