networkteam / typo3-logger
Log in JSON format to stderr
Installs: 1 443
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 3
Forks: 0
Open Issues: 2
Type:typo3-cms-extension
Requires
- typo3/cms-core: ^11.5 || ^12.4 || ^13.2 || dev-main
README
This extension provides a JSON LogWriter that logs to stderr.
Installation
composer req networkteam/typo3-logger
Configuration
Basic configuration
LOG: writerConfiguration: warning: Networkteam\Logger\Writer\JsonWriter: foo: 'bar'
In container environments it might be handy to register the JsonWriter as XClass for the FileWriter. This way no log
files are written to typo3temp/var/log/
.
SYS: Objects: TYPO3\CMS\Core\Log\Writer\FileWriter: className: 'Networkteam\Logger\Writer\JsonWriter'
Example output
{ "time": "Fri, 09 Feb 2024 21:21:49 +0100", "severity": "critical", "message": "Exception: test", "component": "TYPO3.CMS.Core.Error.DebugExceptionHandler", "source": "typo3", "typo3_request_id": "6be0a6b53348f", "context": { "mode": "WEB", "application_mode": "BE", "exception_code": 0, "file": "typo3/typo3/sysext/backend/Classes/Middleware/BackendUserAuthenticator.php", "line": 95 }, "url": "http://localhost:8080/typo3/module/system/config", "method": "GET", "logger_context": { "foo": "bar" } }
{ "time": "Fri, 09 Feb 2024 21:23:07 +0100", "severity": "warning", "message": "Illegal filepath \"EXT:calendarize/Configuration/TypoScript/setup.typoscript\".", "component": "TYPO3.CMS.Core.TypoScript.Parser.TypoScriptParser", "source": "typo3", "typo3_request_id": "c429ef02dcf9d", "external_request_id": "96a101dd-c49a-4fea-aee2-a76510f32190", "context": [], "url": "http://localhost:8080/typo3/module/system/config?token=--AnonymizedToken--", "method": "GET", "logger_context": { "foo": "bar" } }
PHP-FPM Configuration
[www] catch_workers_output = yes decorate_workers_output = no
Usage by 3rd parties
Please feel free to use it. Expect breaking changes at any time.