| Current Path : /var/www/homesaver/www/bitrix/modules/rest/lib/Tools/Diagnostics/ |
| 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);
}
}