Your IP : 13.59.35.116


Current Path : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/main/lib/web/http/
Upload File :
Current File : /var/www/www-root/data/www/monolith-realty.ru/bitrix/modules/main/lib/web/http/debuginterface.php

<?php

/**
 * Bitrix Framework
 * @package bitrix
 * @subpackage main
 * @copyright 2001-2022 Bitrix
 */

namespace Bitrix\Main\Web\Http;

interface DebugInterface
{
	/**
	 * Sets debug level using HttpDebug::* constants.
	 * @param int $debugLevel
	 */
	public function setDebugLevel(int $debugLevel);

	/**
	 * Returns the current level.
	 * @return int HttpDebug::* constants
	 */
	public function getDebugLevel(): int;
}