• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/log.php
  • Класс: BitrixRestLogTable
  • Вызов: LogTable::clearAll
static function clearAll()
{
	$entity = static::getEntity();
	$sqlTableName = static::getTableName();

	$sql = "TRUNCATE TABLE {$sqlTableName}";
	$entity->getConnection()->queryExecute($sql);
}