Timezones
LoggingService.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
5/*
6 * This file is part of the package thucke/timezones.
7 *
8 * For the full copyright and license information, please read the
9 * LICENSE file that was distributed with this source code.
10 */
11
13
14use Psr\Log\LoggerInterface;
15use TYPO3\CMS\Core\Log\LogManagerInterface;
16use TYPO3\CMS\Core\Log\Writer\DatabaseWriter;
17use TYPO3\CMS\Core\Log\Writer\FileWriter;
18use TYPO3\CMS\Core\SingletonInterface;
19use TYPO3\CMS\Extbase\Configuration\ConfigurationManagerInterface;
20use TYPO3\CMS\Extbase\Object\ObjectManagerInterface;
21
29class LoggingService implements SingletonInterface
30{
34 protected $objectManager;
38 protected $logManager;
42 public function injectLogManager(LogManagerInterface $logManager): void
43 {
44 $this->logManager = $logManager;
45 }
53 public function injectConfigurationManager(ConfigurationManagerInterface $configurationManager): void
54 {
55 $this->configurationManager = $configurationManager;
56 }
57
66 public function getLogger(string $name): LoggerInterface
67 {
68 //\TYPO3\CMS\Extbase\Utility\DebuggerUtility::var_dump($GLOBALS['TYPO3_CONF_VARS']['LOG'], ' getLogger', 8, FALSE);
69 $writerConfiguration = $GLOBALS['TYPO3_CONF_VARS']['LOG']['Thucke']['Timezones']['writerConfiguration'];
70 $settings = $this->configurationManager->getConfiguration(
71 ConfigurationManagerInterface::CONFIGURATION_TYPE_SETTINGS,
72 'timezones',
73 'pi1'
74 );
75 if (is_array($settings['logging'])) {
76 foreach ($settings['logging'] as $logLevel => $logConfig) {
77 $levelUppercase = strtoupper($logLevel);
78 if (!empty($logConfig['file'])) {
79 $writerConfiguration[constant('\TYPO3\CMS\Core\Log\LogLevel::' . $levelUppercase)][FileWriter::class] =
80 ['logFile' => $logConfig['file']];
81 }
82 if (!empty($logConfig['database'])) {
83 $writerConfiguration[constant('\TYPO3\CMS\Core\Log\LogLevel::' . $levelUppercase)][DatabaseWriter::class] =
84 ['table' => $logConfig['table']];
85 }
86 }
87 }
88 $GLOBALS['TYPO3_CONF_VARS']['LOG']['Thucke']['Timezones']['writerConfiguration'] = $writerConfiguration;
89 return $this->logManager->getLogger($name);
90 }
91}
injectConfigurationManager(ConfigurationManagerInterface $configurationManager)
injectLogManager(LogManagerInterface $logManager)