Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/rest/lib/Tools/Diagnostics/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/rest/lib/Tools/Diagnostics/LogFormatter.php

<?php

namespace Bitrix\Rest\Tools\Diagnostics;

use Bitrix\Main;
use Bitrix\Rest\LogTable;

class LogFormatter extends Main\Diag\LogFormatter
{
	public function format($message, array $context = []): string
	{
		LogTable::filterResponseData($context);

		return parent::format($message, $context);
	}
}