-
- Downloads
Add a request specific ID to the logging processor
We currently attach a user session ID to each log entry, so we know which requests are part of the same user session. This only works after the user is authenticated since we generate the logging ID from the access token. This adds a per-request uuid so we know which log lines are part of the same request.
Showing
- composer.json 1 addition, 0 deletionscomposer.json
- composer.lock 155 additions, 2 deletionscomposer.lock
- src/Logging/LoggingProcessor.php 19 additions, 3 deletionssrc/Logging/LoggingProcessor.php
- tests/Logging/LoggingProcessorTest.php 29 additions, 6 deletionstests/Logging/LoggingProcessorTest.php
... | ... | @@ -23,6 +23,7 @@ |
"symfony/security-core": "^5.3", | ||
"symfony/security-guard": "^5.3", | ||
"symfony/twig-bundle": "^5.3", | ||
"symfony/uid": "^5.4", | ||
"symfony/validator": "^5.3", | ||
"symfony/yaml": "^5.3" | ||
}, | ||
... | ... |
Please register or sign in to comment