/
githubmirror
/
magento2
Обзор
Документация
Войти
/
githubmirror
/
magento2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
2.4-develop
lib/internal/Magento/Framework/DB/Logger/File.php
86 строк
2 KB
Alexandru Plapana
ACP2E-4094: Add index check for queries when loggging mode is enabled.
04 авг 2025, 15:02
04 авг 2025, 15:02
aee0c78
Код
Авторство
О чём код?
<?php /** * Copyright 2014 Adobe * All Rights Reserved. */ namespace Magento\Framework\DB\Logger; use Magento\Framework\App\Filesystem\DirectoryList; use Magento\Framework\Exception\FileSystemException; use Magento\Framework\Filesystem; use Magento\Framework\Filesystem\Directory\WriteInterface; /** * Logging to file */ class File extends LoggerAbstract { /** * @var WriteInterface */ private $dir; /** * Path to SQL debug data log * * @var string */ protected $debugFile; /** * @param Filesystem $filesystem * @param string $debugFile * @param bool $logAllQueries * @param float $logQueryTime * @param bool $logCallStack * @param bool $logIndexCheck * @param QueryAnalyzerInterface|null $queryAnalyzer * @throws FileSystemException */ public function __construct( Filesystem $filesystem, $debugFile = 'debug/db.log', $logAllQueries = false, $logQueryTime = 0.05, $logCallStack = false, $logIndexCheck = false, ?QueryAnalyzerInterface $queryAnalyzer = null, ) { parent::__construct($logAllQueries, $logQueryTime, $logCallStack, $logIndexCheck, $queryAnalyzer); $this->dir = $filesystem->getDirectoryWrite(DirectoryList::VAR_DIR); $this->debugFile = $debugFile; } /** * @inheritDoc */ public function log($str) { $str = '## ' . date('Y-m-d H:i:s') . "\r\n" . $str; $stream = $this->dir->openFile($this->debugFile, 'a'); $stream->lock(); $stream->write($str); $stream->unlock(); $stream->close(); } /** * @inheritDoc */ public function logStats($type, $sql, $bind = [], $result = null) { $stats = $this->getStats($type, $sql, $bind, $result); if ($stats) { $this->log($stats); } } /** * @inheritDoc */ public function critical(\Exception $e) { $this->log("EXCEPTION \n$e\n\n"); } }