TYPO3 v15 dev-main snapshot ()

This commit is contained in:
2026-08-10 22:31:09 +02:00
commit af8cc155b5
6818 changed files with 642608 additions and 0 deletions
+75
View File
@@ -0,0 +1,75 @@
<?php
/*
* This file is part of the TYPO3 CMS project.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read the
* LICENSE.txt file that was distributed with this source code.
*
* The TYPO3 project - inspiring people to share!
*/
namespace TYPO3\CMS\Core\Log\Writer;
use TYPO3\CMS\Core\Database\ConnectionPool;
use TYPO3\CMS\Core\Log\LogLevel;
use TYPO3\CMS\Core\Log\LogRecord;
use TYPO3\CMS\Core\Utility\GeneralUtility;
/**
* Log writer that writes the log records into a database table.
*/
class DatabaseWriter extends AbstractWriter
{
/**
* Writes the log record
*
* @param LogRecord $record Log record
* @return \TYPO3\CMS\Core\Log\Writer\WriterInterface $this
*/
public function writeLog(LogRecord $record)
{
try {
// Avoid ConnectionPool usage prior boot completion (see #96291).
if (!GeneralUtility::getContainer()->get('boot.state')->complete) {
return $this;
}
} catch (\LogicException $e) {
// LogicException will be thrown if the container isn't available yet.
return $this;
}
$data = '';
$context = $record->getData();
if (!empty($context)) {
// Fold an exception into the message, and string-ify it into context so it can be jsonified.
if (isset($context['exception']) && $context['exception'] instanceof \Throwable) {
$context['exception'] = (string)$context['exception'];
}
$data = json_encode($context);
}
$fieldValues = [
'request_id' => $record->getRequestId(),
'time_micro' => $record->getCreated(),
'component' => $record->getComponent(),
'level' => LogLevel::normalizeLevel($record->getLevel()),
'message' => $record->getMessage(),
'data' => $data,
];
// sys_log uses tstamp for garbage collection via TableGarbageCollectionTask.
// Without it, tstamp defaults to 0 (1970-01-01), causing immediate deletion (see #109290).
$fieldValues['tstamp'] = (int)$record->getCreated();
GeneralUtility::makeInstance(ConnectionPool::class)
->getConnectionForTable('sys_log')
->insert('sys_log', $fieldValues);
return $this;
}
}